]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/Resources/static/themes/baggy/js/shortcuts/main.js
Merge pull request #3167 from wallabag/doc-github-template
[github/wallabag/wallabag.git] / app / Resources / static / themes / baggy / js / shortcuts / main.js
1 $(document).ready(() => {
2 Mousetrap.bind('s', () => {
3 $('#search').trigger('click');
4 $('#search_entry_term').focus();
5 return false;
6 });
7 });