]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/Resources/static/themes/baggy/js/shortcuts/entry.js
77d267a314d42499a9ff932b1636ab6c40cea953
[github/wallabag/wallabag.git] / app / Resources / static / themes / baggy / js / shortcuts / entry.js
1 import Mousetrap from 'mousetrap';
2 import $ from 'jquery';
3
4 /* Article view */
5 Mousetrap.bind('o', () => {
6 $('div#article_toolbar ul.links li:nth-child(2) a')[0].click();
7 });
8
9 /* mark as favorite */
10 Mousetrap.bind('s', () => {
11 $('div#article_toolbar ul.links li:nth-child(5) a')[0].click();
12 });
13
14 /* mark as read */
15 Mousetrap.bind('a', () => {
16 $('div#article_toolbar ul.links li:nth-child(4) a')[0].click();
17 });
18
19 /* delete */
20 Mousetrap.bind('del', () => {
21 $('div#article_toolbar ul.links li:nth-child(7) a')[0].click();
22 });