]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/Resources/static/themes/material/js/shortcuts/main.js
ccd3c92d84859a946baade4ef3a62c0f56d7fea8
[github/wallabag/wallabag.git] / app / Resources / static / themes / material / js / shortcuts / main.js
1 /* Actions */
2 Mousetrap.bind('g n', () => {
3 $('#nav-btn-add').trigger('click');
4 });
5
6 Mousetrap.bind('esc', () => {
7 $('.close').trigger('click');
8 });
9
10 // Display the first element of the current view
11 Mousetrap.bind('right', () => {
12 $('ul.data li:first-child span.dot-ellipsis a')[0].click();
13 });