File "navbar_multiple_sticky.js"
Full Path: /home/magicrsz/public_html/assets/admin/global_assets/js/demo_pages/navbar_multiple_sticky.js
File size: 963 bytes
MIME-type: text/plain
Charset: utf-8
/* ------------------------------------------------------------------------------
*
* # Sticky navbar
*
* Demo JS code for navbar_multiple_sticky.html pages
*
* ---------------------------------------------------------------------------- */
// Setup module
// ------------------------------
var NavbarMultipleSticky = function() {
//
// Setup module components
//
// Sticky.js
var _componentSticky = function() {
if (!$().stick_in_parent) {
console.warn('Warning - sticky.min.js is not loaded.');
return;
}
// Initialize
$('.navbar-sticky').stick_in_parent();
};
//
// Return objects assigned to module
//
return {
init: function() {
_componentSticky();
}
}
}();
// Initialize module
// ------------------------------
document.addEventListener('DOMContentLoaded', function() {
NavbarMultipleSticky.init();
});