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