mirror of
https://github.com/NohamR/BetterYGG.git
synced 2026-01-10 08:18:19 +00:00
10 lines
221 B
JavaScript
10 lines
221 B
JavaScript
hideSidebar();
|
|
|
|
$(window).on('resize', function () {
|
|
hideSidebar();
|
|
});
|
|
|
|
function hideSidebar() {
|
|
$(window).width() < 1750 ? $('#cat, .back-cat').removeClass('active') : $('#cat, .back-cat').addClass('active');
|
|
}
|