2016-11-03 10:02:16 +01:00
|
|
|
import Mousetrap from 'mousetrap';
|
|
|
|
|
2017-09-06 22:42:23 +02:00
|
|
|
/* Shortcuts */
|
2016-11-02 16:44:20 +01:00
|
|
|
|
|
|
|
/* Go to */
|
|
|
|
Mousetrap.bind('g u', () => { window.location.href = Routing.generate('homepage'); });
|
|
|
|
Mousetrap.bind('g s', () => { window.location.href = Routing.generate('starred'); });
|
|
|
|
Mousetrap.bind('g r', () => { window.location.href = Routing.generate('archive'); });
|
|
|
|
Mousetrap.bind('g a', () => { window.location.href = Routing.generate('all'); });
|
|
|
|
Mousetrap.bind('g t', () => { window.location.href = Routing.generate('tag'); });
|
|
|
|
Mousetrap.bind('g c', () => { window.location.href = Routing.generate('config'); });
|
|
|
|
Mousetrap.bind('g i', () => { window.location.href = Routing.generate('import'); });
|
|
|
|
Mousetrap.bind('g d', () => { window.location.href = Routing.generate('developer'); });
|
|
|
|
Mousetrap.bind('?', () => { window.location.href = Routing.generate('howto'); });
|
2016-11-23 14:40:00 +01:00
|
|
|
Mousetrap.bind('g l', () => { window.location.href = Routing.generate('fos_user_security_logout'); });
|