Files
php-the-right-way/scripts/setup.js
2015-09-28 15:02:11 -04:00

19 lines
482 B
JavaScript

(function ($) {
// Attach FastClick
var attachFastClick = Origami.fastclick;
attachFastClick(document.body);
// Mobile TOC menu
var $window = $(window),
$nav = $('.site-navigation');
$nav.click(function (e) {
var $target = $(e.target);
if ($target.is($nav) && $window.width() <= 375) {
$nav.toggleClass('open');
}
if ($target.is('a')) {
$nav.removeClass('open');
}
});
})(jQuery);