Files
pelican-themes/syte/static/js/components/mobile.js
2012-07-07 08:31:08 +05:45

16 lines
259 B
JavaScript

var isMobileView = false;
var mediaQuery = window.matchMedia("(max-width:600px)");
if (mediaQuery.matches) {
isMobileView = true;
}
$(function() {
$('#mobile-nav-btn').click(function() {
$('.main-section').toggleClass('nav-opened');
});
});