Better handling of ? for hotkey legend

This commit is contained in:
Mark McDowall 2014-07-30 16:36:37 -07:00
parent b5607b79bc
commit 9ecbf8773e
1 changed files with 10 additions and 6 deletions

View File

@ -6,16 +6,20 @@ define(
'vent',
'Hotkeys/HotkeysView'
], function ($, vent, HotkeysView) {
$(document).on('keydown', function (e) {
if (e.ctrlKey && e.keyCode === 83) {
vent.trigger(vent.Hotkeys.SaveSettings);
e.preventDefault();
$(document).on('keypress', function (e) {
if ($(e.target).is('input') || $(e.target).is('textarea')) {
return;
}
if (e.shiftKey && e.keyCode === 191) {
if (e.charCode === 63) {
vent.trigger(vent.Commands.OpenModalCommand, new HotkeysView());
// vent.trigger(vent.Hotkeys.ShowHotkeys);
}
});
$(document).on('keydown', function (e) {
if (e.ctrlKey && e.keyCode === 83) {
vent.trigger(vent.Hotkeys.SaveSettings);
e.preventDefault();
return;
}