mirror of
https://github.com/NohamR/BetterYGG.git
synced 2026-01-10 08:18:19 +00:00
14 lines
365 B
JavaScript
14 lines
365 B
JavaScript
hideSidebar();
|
|
|
|
window.addEventListener('resize', function () {
|
|
hideSidebar();
|
|
});
|
|
|
|
function hideSidebar() {
|
|
if (window.innerWidth < 1750) {
|
|
document.querySelectorAll('#cat, .back-cat').forEach(el => el.classList.remove('active'));
|
|
} else {
|
|
document.querySelectorAll('#cat, .back-cat').forEach(el => el.classList.add('active'));
|
|
}
|
|
}
|