Last active
June 2, 2017 07:02
-
-
Save mccrodp/d1494f1dc34a1a45053c4e4cebef8713 to your computer and use it in GitHub Desktop.
Bell Template Scroll Fix using https://www.npmjs.com/package/sticky-header - [http://bootbites.com/articles/freebie-bell-bootstrap-4-theme]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" src="plugins/sticky.js"></script> | |
<script type="text/javascript"> | |
var nav=document.querySelectorAll('#nav') | |
Array.prototype.forEach.call(nav, function(nav) { | |
sticky(nav); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment