fixed missing end span tag. fixed deprecated js function.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-02-21 22:57:16 -07:00
parent b5ea3c63a1
commit 0ffc469ac8
2 changed files with 3 additions and 3 deletions

View File

@@ -158,7 +158,7 @@ function hideMobileNav() {
$(".lubelogger-mobile-nav").removeClass("lubelogger-mobile-nav-show");
}
function bindWindowResize() {
$(window).resize(function () {
$(window).on('resize', function () {
hideMobileNav();
});
}