full screen navbar for small devices.
This commit is contained in:
@@ -130,4 +130,16 @@ function initDatePicker(input, futureOnly) {
|
||||
autoclose: true
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function showMobileNav() {
|
||||
$(".lubelogger-mobile-nav").addClass("lubelogger-mobile-nav-show");
|
||||
}
|
||||
function hideMobileNav() {
|
||||
$(".lubelogger-mobile-nav").removeClass("lubelogger-mobile-nav-show");
|
||||
}
|
||||
function bindWindowResize() {
|
||||
$(window).resize(function () {
|
||||
hideMobileNav();
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user