(function($) { // toggle admin sidebar Mousetrap.bindGlobal('esc', function() { $('#collapse-button').trigger('click'); // move focus to document - generally useful to move focus out of an input element $('#collapse-button').focus(); }); // go to site homepage Mousetrap.bindGlobal('alt+x', function() { window.location.replace(akSiteUrl); }); // toggle select all checkbox if (1 === $('#cb-select-all-1').length) { Mousetrap.bindGlobal('a', function() { $('#cb-select-all-1').trigger('click'); }); } // add new if (1 === $('a.add-new-h2').length) { Mousetrap.bindGlobal('n', function() { window.location.replace($('a.add-new-h2').attr('href')); }); } // admin-wide add new Post Mousetrap.bind('shift+n', function() { if ('post-new-php' !== adminpage) { window.location.replace(akAdminUrl + '/post-new.php'); } }); // submit form Mousetrap.bind('shift+s', function() { if (1 === $('#publish').length) { $('#publish').trigger('click'); } else if (1 === $('#submit').length) { $('#submit').trigger('click'); } }); })(jQuery);