blob: 4b530b3d405497b9ef283bae71c48cc1605afb40 (
plain) (
tree)
|
|
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');
});
});
|