aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/baggy/js/shortcuts/main.js
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-18 19:21:31 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-19 20:05:16 +0100
commit995c204428dd6be04d2bff1d5e17f3e95268f44d (patch)
tree1ac2c526e54ddaf1678184f93d4e10a7a015349c /app/Resources/static/themes/baggy/js/shortcuts/main.js
parent32f455c1317bf536aea63147d2c5074ae7425d42 (diff)
downloadwallabag-995c204428dd6be04d2bff1d5e17f3e95268f44d.tar.gz
wallabag-995c204428dd6be04d2bff1d5e17f3e95268f44d.tar.zst
wallabag-995c204428dd6be04d2bff1d5e17f3e95268f44d.zip
Added shortcut
Diffstat (limited to 'app/Resources/static/themes/baggy/js/shortcuts/main.js')
-rw-r--r--app/Resources/static/themes/baggy/js/shortcuts/main.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/Resources/static/themes/baggy/js/shortcuts/main.js b/app/Resources/static/themes/baggy/js/shortcuts/main.js
index e69de29b..aed09aee 100644
--- a/app/Resources/static/themes/baggy/js/shortcuts/main.js
+++ b/app/Resources/static/themes/baggy/js/shortcuts/main.js
@@ -0,0 +1,7 @@
1$(document).ready(() => {
2 Mousetrap.bind('s', () => {
3 $('#search').trigger('click');
4 $('#search_entry_term').focus();
5 return false;
6 });
7});