mirror of
https://github.com/rolfiee/wiki.git
synced 2025-06-18 19:25:38 -04:00

The site is now functional, though not perfect, on the n3DS browser (and also Safari 5.0.6, the Vita browser, and probably more)
5 lines
151 B
JavaScript
5 lines
151 B
JavaScript
// Make navbar not open on hover
|
|
Array.from(document.getElementsByClassName("hover-content")).forEach(r => {
|
|
r.classList.remove("hover-content");
|
|
});
|