]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/Resources/static/themes/_global/js/shortcuts/main.js
Merge pull request #3011 from wallabag/2.3
[github/wallabag/wallabag.git] / app / Resources / static / themes / _global / js / shortcuts / main.js
CommitLineData
5637a26e
TC
1import Mousetrap from 'mousetrap';
2
e317a5ab 3/* Shortcuts */
16ef7607
NL
4
5/* Go to */
6Mousetrap.bind('g u', () => { window.location.href = Routing.generate('homepage'); });
7Mousetrap.bind('g s', () => { window.location.href = Routing.generate('starred'); });
8Mousetrap.bind('g r', () => { window.location.href = Routing.generate('archive'); });
9Mousetrap.bind('g a', () => { window.location.href = Routing.generate('all'); });
10Mousetrap.bind('g t', () => { window.location.href = Routing.generate('tag'); });
11Mousetrap.bind('g c', () => { window.location.href = Routing.generate('config'); });
12Mousetrap.bind('g i', () => { window.location.href = Routing.generate('import'); });
13Mousetrap.bind('g d', () => { window.location.href = Routing.generate('developer'); });
14Mousetrap.bind('?', () => { window.location.href = Routing.generate('howto'); });
66e9dde0 15Mousetrap.bind('g l', () => { window.location.href = Routing.generate('fos_user_security_logout'); });