mirror of
https://github.com/rvtr/wiki.git
synced 2025-10-31 06:31:13 -04:00
7 lines
257 B
JavaScript
7 lines
257 B
JavaScript
{...{}}; // Syntax error in anything before ECMAScript 9, we don't want to run this code on old browsers
|
|
|
|
// Make navbar not open on hover
|
|
Array.from(document.getElementsByClassName("hover-content")).forEach(r => {
|
|
r.classList.remove("hover-content");
|
|
});
|