Merge pull request #18 from sigonasr2/collapsibleMenu-branch

Created script to collapse menu. This is a fix for Issue #5

This looks great, the only thing I found was the logo that links to the top of the page isn't closing the drawer. We'll open a separate issue for it though. Thanks for the hard work!
pull/16/head
Kevin Falting 6 years ago committed by GitHub
commit 8f2eb87a0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      additionalScripts.js
  2. 1
      index.html

@ -0,0 +1,4 @@
$(function(){
var navMain = $(".navbar-collapse");
navMain.on("click","a:not([data-toggle])",null,function(){navMain.collapse('hide');});
});

@ -227,5 +227,6 @@
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<script src="additionalScripts.js"></script>
</body>
</html>

Loading…
Cancel
Save