Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
squireless
/
assets
/
admin
/
global_assets
/
js
/
demo_pages
:
navbar_multiple_sticky.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
/* ------------------------------------------------------------------------------ * * # 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(); });