]>
Commit | Line | Data |
---|---|---|
1 | (function(){ | |
2 | 'use strict'; | |
3 | ||
4 | $( document ).ready(function(){ | |
5 | if(window.innerWidth >= 768) | |
6 | return; | |
7 | $('#title').before('<div class="text-center">Tap title to toggle menu</div>'); | |
8 | $('nav').addClass('hidden'); | |
9 | $('#title').on('click', function () { | |
10 | $('nav').toggleClass('hidden'); | |
11 | }); | |
12 | }); | |
13 | })(); |