]> iEval git - plack-app-gruntmaster.git/blame_incremental - 90-mobilenav.js
fixed "Page 1 of 0" in job log
[plack-app-gruntmaster.git] / 90-mobilenav.js
... / ...
CommitLineData
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})();
This page took 0.022149 seconds and 5 git commands to generate.