Commit 0e0f593c authored by Alexander.Trofimov's avatar Alexander.Trofimov

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

parent af7f2254
...@@ -68,20 +68,6 @@ define([ ...@@ -68,20 +68,6 @@ define([
'sheet:move': _.bind(this.moveWorksheet, this) '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() { events: function() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment