aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/material
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-16 09:17:12 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-16 09:17:12 +0100
commit94f2057ffefdb164ae388a6971b4ed052082a434 (patch)
tree2bc79fda2ca07baf246a36543fd4419a7af7a7a8 /app/Resources/static/themes/material
parent10a1ffae5313b0f77287b92aca93bb0066d3b1e3 (diff)
downloadwallabag-94f2057ffefdb164ae388a6971b4ed052082a434.tar.gz
wallabag-94f2057ffefdb164ae388a6971b4ed052082a434.tar.zst
wallabag-94f2057ffefdb164ae388a6971b4ed052082a434.zip
Added CSS class on links
Diffstat (limited to 'app/Resources/static/themes/material')
-rw-r--r--app/Resources/static/themes/material/js/shortcuts/entry.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Resources/static/themes/material/js/shortcuts/entry.js b/app/Resources/static/themes/material/js/shortcuts/entry.js
index 674253b5..357c22fe 100644
--- a/app/Resources/static/themes/material/js/shortcuts/entry.js
+++ b/app/Resources/static/themes/material/js/shortcuts/entry.js
@@ -3,20 +3,20 @@ import $ from 'jquery';
3 3
4/* open original article */ 4/* open original article */
5Mousetrap.bind('o', () => { 5Mousetrap.bind('o', () => {
6 $('ul.side-nav li:nth-child(2) a i')[0].click(); 6 $('ul.side-nav a.original i')[0].click();
7}); 7});
8 8
9/* mark as favorite */ 9/* mark as favorite */
10Mousetrap.bind('s', () => { 10Mousetrap.bind('s', () => {
11 $('ul.side-nav li:nth-child(5) a i')[0].click(); 11 $('ul.side-nav a.favorite i')[0].click();
12}); 12});
13 13
14/* mark as read */ 14/* mark as read */
15Mousetrap.bind('a', () => { 15Mousetrap.bind('a', () => {
16 $('ul.side-nav li:nth-child(4) a i')[0].click(); 16 $('ul.side-nav a.markasread i')[0].click();
17}); 17});
18 18
19/* delete */ 19/* delete */
20Mousetrap.bind('del', () => { 20Mousetrap.bind('del', () => {
21 $('ul.side-nav li:nth-child(6) a i')[0].click(); 21 $('ul.side-nav a.delete i')[0].click();
22}); 22});