Files
WrenchBoradWeb/www/assets/js/pages/layout_navbar_main_hideable.js
T
2019-05-31 11:26:35 -04:00

33 lines
888 B
JavaScript

/* ------------------------------------------------------------------------------
*
* # Page layout with hideable main navbar
*
* Specific JS code additions for layout_navbar_main_hideable.html page
*
* Version: 1.0
* Latest update: Feb 25, 2016
*
* ---------------------------------------------------------------------------- */
$(function() {
// Init headroom
// ------------------------------
// Hide navbar with Headroom.js library
$(".navbar-fixed-top").headroom({
classes: {
pinned: "headroom-top-pinned",
unpinned: "headroom-top-unpinned"
},
offset: $('.page-container').offset().top - $('.navbar-fixed-top').outerHeight(),
// callback when unpinned, `this` is headroom object
onUnpin: function() {
$('.navbar .dropdown-menu').parent().removeClass('open');
}
});
});