diff --git a/app/js/directives.js b/app/js/directives.js index e5656984..3ec5cdf7 100644 --- a/app/js/directives.js +++ b/app/js/directives.js @@ -56,21 +56,6 @@ angular.module('myApp.directives', ['myApp.filters']) return true; } - if (e.keyCode >= 48 && e.keyCode <= 57 && !e.shiftKey && e.altKey) { // Alt + [0-9 keys] - var currentSelected = $(scrollableWrap).find('.im_dialog_wrap a')[(e.keyCode - 48 || 10) - 1]; - if (currentSelected) { - currentSelected.click(); - } - return cancelEvent(e); - } - if (e.keyCode >= 96 && e.keyCode <= 105 && !e.shiftKey && e.altKey) { // Alt + [0-9 numpad keys] - var currentSelected = $(scrollableWrap).find('.im_dialog_wrap a')[(e.keyCode - 96 || 10) - 1]; - if (currentSelected) { - currentSelected.click(); - } - return cancelEvent(e); - } - if (e.keyCode == 27 || e.keyCode == 9 && e.shiftKey) { // ESC or Shift + Tab if (!searchFocused) { searchField.focus(); diff --git a/app/partials/changelog_modal.html b/app/partials/changelog_modal.html index 32586e35..b20b5083 100644 --- a/app/partials/changelog_modal.html +++ b/app/partials/changelog_modal.html @@ -20,6 +20,17 @@