aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/material/js/shortcuts/main.js
blob: ccd3c92d84859a946baade4ef3a62c0f56d7fea8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Actions */
Mousetrap.bind('g n', () => {
    $('#nav-btn-add').trigger('click');
});

Mousetrap.bind('esc', () => {
    $('.close').trigger('click');
});

// Display the first element of the current view
Mousetrap.bind('right', () => {
    $('ul.data li:first-child span.dot-ellipsis a')[0].click();
});