delete hotkey Alt+PgUp\Alt+PgDown processing -> processing in sdkjs

This commit is contained in:
Alexander.Trofimov 2016-08-22 17:38:54 +03:00
parent af7f225447
commit 0e0f593cda

View file

@ -68,20 +68,6 @@ define([
'sheet:move': _.bind(this.moveWorksheet, this)
}
});
var me = this;
Common.util.Shortcuts.delegateShortcuts({shortcuts:{
'alt+pageup': function(e) {
me.moveCurrentTab(-1);
e.preventDefault();
e.stopPropagation();
},
'alt+pagedown': function(e) {
me.moveCurrentTab(1);
e.preventDefault();
e.stopPropagation();
}
}});
},
events: function() {