aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-20 10:11:57 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-22 13:07:42 +0100
commitc526f9e4744ac03aa7ab4ff507d5466eee371b08 (patch)
treee3596e9837213f0574d2113787041045ccb52b6c /app/Resources/static
parentbb28368f6953e07dbe6747d7c1eacf1abe35817e (diff)
downloadwallabag-c526f9e4744ac03aa7ab4ff507d5466eee371b08.tar.gz
wallabag-c526f9e4744ac03aa7ab4ff507d5466eee371b08.tar.zst
wallabag-c526f9e4744ac03aa7ab4ff507d5466eee371b08.zip
Added help about shortcuts
Diffstat (limited to 'app/Resources/static')
-rw-r--r--app/Resources/static/themes/baggy/js/shortcuts/entry.js2
-rw-r--r--app/Resources/static/themes/material/js/shortcuts/entry.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/Resources/static/themes/baggy/js/shortcuts/entry.js b/app/Resources/static/themes/baggy/js/shortcuts/entry.js
index 728df8bd..22aa0caf 100644
--- a/app/Resources/static/themes/baggy/js/shortcuts/entry.js
+++ b/app/Resources/static/themes/baggy/js/shortcuts/entry.js
@@ -7,7 +7,7 @@ Mousetrap.bind('o', () => {
7}); 7});
8 8
9/* mark as favorite */ 9/* mark as favorite */
10Mousetrap.bind('s', () => { 10Mousetrap.bind('f', () => {
11 $('div#article_toolbar ul.links a.favorite')[0].click(); 11 $('div#article_toolbar ul.links a.favorite')[0].click();
12}); 12});
13 13
diff --git a/app/Resources/static/themes/material/js/shortcuts/entry.js b/app/Resources/static/themes/material/js/shortcuts/entry.js
index 357c22fe..2dcc93d7 100644
--- a/app/Resources/static/themes/material/js/shortcuts/entry.js
+++ b/app/Resources/static/themes/material/js/shortcuts/entry.js
@@ -7,7 +7,7 @@ Mousetrap.bind('o', () => {
7}); 7});
8 8
9/* mark as favorite */ 9/* mark as favorite */
10Mousetrap.bind('s', () => { 10Mousetrap.bind('f', () => {
11 $('ul.side-nav a.favorite i')[0].click(); 11 $('ul.side-nav a.favorite i')[0].click();
12}); 12});
13 13