aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-23 14:40:00 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-23 14:40:00 +0100
commit66e9dde0dc0ba5f554231a7a968ef5b530a0563f (patch)
tree5630b9daf08589568e67c7f7e23419f416a6268c /app/Resources/static
parentf4a98334903f01e6109b09e27dc1ebefab8f8865 (diff)
downloadwallabag-66e9dde0dc0ba5f554231a7a968ef5b530a0563f.tar.gz
wallabag-66e9dde0dc0ba5f554231a7a968ef5b530a0563f.tar.zst
wallabag-66e9dde0dc0ba5f554231a7a968ef5b530a0563f.zip
Fixed logout shortcut
Diffstat (limited to 'app/Resources/static')
-rw-r--r--app/Resources/static/themes/_global/js/shortcuts/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Resources/static/themes/_global/js/shortcuts/main.js b/app/Resources/static/themes/_global/js/shortcuts/main.js
index ef6a1b84..c81bf869 100644
--- a/app/Resources/static/themes/_global/js/shortcuts/main.js
+++ b/app/Resources/static/themes/_global/js/shortcuts/main.js
@@ -12,4 +12,4 @@ Mousetrap.bind('g c', () => { window.location.href = Routing.generate('config');
12Mousetrap.bind('g i', () => { window.location.href = Routing.generate('import'); }); 12Mousetrap.bind('g i', () => { window.location.href = Routing.generate('import'); });
13Mousetrap.bind('g d', () => { window.location.href = Routing.generate('developer'); }); 13Mousetrap.bind('g d', () => { window.location.href = Routing.generate('developer'); });
14Mousetrap.bind('?', () => { window.location.href = Routing.generate('howto'); }); 14Mousetrap.bind('?', () => { window.location.href = Routing.generate('howto'); });
15Mousetrap.bind('g l', () => { window.location.href = Routing.generate('logout'); }); 15Mousetrap.bind('g l', () => { window.location.href = Routing.generate('fos_user_security_logout'); });