(function( $ ){ "use strict"; // *********** // window.load // *********** jQuery(window).load(function(){ // ======================= // hidden sidebar // ======================= jQuery('#menu-burger').on('click', function() { jQuery('body').toggleClass('menu-shown'); }); jQuery('#body-overlay').on('click', function() { jQuery('body').removeClass('menu-shown'); }); // ======================= // handle ESC with burger // ======================= $(document).keyup(function(e) { if (e.keyCode == 27) { if(jQuery('body').hasClass('menu-shown')){ jQuery('body').removeClass('menu-shown'); } } }); // ***************** // search icon // ***************** jQuery('#searchbar').on('click', function(event) { event.preventDefault(); if( jQuery(this).hasClass('searchbar-shown') ) { if( jQuery('#searchbar input').val() ){ jQuery("#searchbar button").click(); } else { jQuery(this).removeClass('searchbar-shown'); } } else { jQuery(this).addClass('searchbar-shown').find('input').focus(); } }); // ***************** // Thickbox gallery // ***************** jQuery('.gallery-icon a').addClass('thickbox').attr('rel','gallery'); }); } )( jQuery );