fb575d9288a34f375e1118418be5181a87fdfeed
[plack-app-gruntmaster.git] / js / 90-mobilenav.js
1 $(function(){
2 if(window.innerWidth >= 768)
3 return;
4 $('#title')[0].insertAdjacentHTML('beforebegin', '<div class="text-center">Tap title to toggle menu</div>');
5 $('nav')[0].classList.add('hidden');
6 $('#title').on('click', () => $('nav')[0].classList.toggle('hidden'));
7 });
This page took 0.022993 seconds and 3 git commands to generate.