]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/Resources/static/themes/_global/js/shortcuts/main.js
Reorganized JS folders for shortcuts
[github/wallabag/wallabag.git] / app / Resources / static / themes / _global / js / shortcuts / main.js
CommitLineData
16ef7607
NL
1/** Shortcuts **/
2
3/* Go to */
4Mousetrap.bind('g u', () => { window.location.href = Routing.generate('homepage'); });
5Mousetrap.bind('g s', () => { window.location.href = Routing.generate('starred'); });
6Mousetrap.bind('g r', () => { window.location.href = Routing.generate('archive'); });
7Mousetrap.bind('g a', () => { window.location.href = Routing.generate('all'); });
8Mousetrap.bind('g t', () => { window.location.href = Routing.generate('tag'); });
9Mousetrap.bind('g c', () => { window.location.href = Routing.generate('config'); });
10Mousetrap.bind('g i', () => { window.location.href = Routing.generate('import'); });
11Mousetrap.bind('g d', () => { window.location.href = Routing.generate('developer'); });
12Mousetrap.bind('?', () => { window.location.href = Routing.generate('howto'); });
13Mousetrap.bind('g l', () => { window.location.href = Routing.generate('logout'); });