diff --git a/assets/_global/js/shortcuts/entry.js b/assets/_global/js/shortcuts/entry.js deleted file mode 100644 index e69de29bb..000000000 diff --git a/assets/_global/js/shortcuts/main.js b/assets/_global/js/shortcuts/main.js deleted file mode 100644 index b99fa802a..000000000 --- a/assets/_global/js/shortcuts/main.js +++ /dev/null @@ -1,15 +0,0 @@ -import Mousetrap from 'mousetrap'; - -/* Shortcuts */ - -/* 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'); }); -Mousetrap.bind('g l', () => { window.location.href = Routing.generate('fos_user_security_logout'); }); diff --git a/assets/material/index.js b/assets/material/index.js index 2d59fcc5f..9e335407b 100755 --- a/assets/material/index.js +++ b/assets/material/index.js @@ -19,10 +19,6 @@ import '@fontsource/eb-garamond'; import '@fontsource/montserrat'; import '@fontsource/oswald'; -/* Shortcuts */ -import '../_global/js/shortcuts/entry'; -import '../_global/js/shortcuts/main'; - /* Highlight */ import '../_global/js/highlight'; diff --git a/assets/material/js/shortcuts/main.js b/assets/material/js/shortcuts/main.js index 771cfb783..8033d9651 100644 --- a/assets/material/js/shortcuts/main.js +++ b/assets/material/js/shortcuts/main.js @@ -1,6 +1,18 @@ import Mousetrap from 'mousetrap'; import $ from 'jquery'; +/* 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'); }); +Mousetrap.bind('g l', () => { window.location.href = Routing.generate('fos_user_security_logout'); }); + function toggleFocus(cardToToogleFocus) { if (cardToToogleFocus) { $(cardToToogleFocus).toggleClass('z-depth-4');