aboutsummaryrefslogtreecommitdiffstats
path: root/syte/static/js/components/mobile.js
blob: 4b530b3d405497b9ef283bae71c48cc1605afb40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

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');
  });
});