This commit is contained in:
2026-04-16 16:03:13 +02:00
parent 98ccfe6d65
commit d030b54b8a
2 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +0,0 @@
jQuery(document).ready(function ($) {
$(window).on('scroll', function () {
$('#header-box').toggleClass('box-fixed', $(this).scrollTop() > 0);
});
});

View File

@@ -0,0 +1,5 @@
jQuery(document).ready(function ($) {
$(window).on('scroll', function () {
$('#header-box').toggleClass('box-fixed', $(this).scrollTop() > 0);
});
});