commit
7c2be61278
|
@ -30,7 +30,8 @@
|
||||||
'`': 192, '-': 189, '=': 187,
|
'`': 192, '-': 189, '=': 187,
|
||||||
';': 186, '\'': 222,
|
';': 186, '\'': 222,
|
||||||
'[': 219, ']': 221, '\\': 220,
|
'[': 219, ']': 221, '\\': 220,
|
||||||
'ff-': 173, 'ff=': 61
|
'ff-': 173, 'ff=': 61,
|
||||||
|
numplus: 107, numminus: 109
|
||||||
},
|
},
|
||||||
code = function(x){
|
code = function(x){
|
||||||
return _MAP[x] || x.toUpperCase().charCodeAt(0);
|
return _MAP[x] || x.toUpperCase().charCodeAt(0);
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 11 KiB |
Binary file not shown.
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 18 KiB |
Binary file not shown.
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 24 KiB |
|
@ -2053,7 +2053,7 @@ define([
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
shortcuts['command+shift+=,ctrl+shift+=' + (Common.Utils.isGecko ? ',command+shift+ff=,ctrl+shift+ff=' : '')] = function(e) {
|
shortcuts['command+shift+=,ctrl+shift+=,command+shift+numplus,ctrl+shift+numplus' + (Common.Utils.isGecko ? ',command+shift+ff=,ctrl+shift+ff=' : '')] = function(e) {
|
||||||
if (me.editMode && !me.toolbar.mode.isEditMailMerge && !me.toolbar.mode.isEditDiagram && !me.toolbar.mode.isEditOle && !me.toolbar.btnAddCell.isDisabled()) {
|
if (me.editMode && !me.toolbar.mode.isEditMailMerge && !me.toolbar.mode.isEditDiagram && !me.toolbar.mode.isEditOle && !me.toolbar.btnAddCell.isDisabled()) {
|
||||||
var cellinfo = me.api.asc_getCellInfo(),
|
var cellinfo = me.api.asc_getCellInfo(),
|
||||||
selectionType = cellinfo.asc_getSelectionType();
|
selectionType = cellinfo.asc_getSelectionType();
|
||||||
|
@ -2084,7 +2084,7 @@ define([
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
shortcuts['command+shift+-,ctrl+shift+-' + (Common.Utils.isGecko ? ',command+shift+ff-,ctrl+shift+ff-' : '')] = function(e) {
|
shortcuts['command+shift+-,ctrl+shift+-,command+shift+numminus,ctrl+shift+numminus' + (Common.Utils.isGecko ? ',command+shift+ff-,ctrl+shift+ff-' : '')] = function(e) {
|
||||||
if (me.editMode && !me.toolbar.mode.isEditMailMerge && !me.toolbar.mode.isEditDiagram && !me.toolbar.mode.isEditOle && !me.toolbar.btnDeleteCell.isDisabled()) {
|
if (me.editMode && !me.toolbar.mode.isEditMailMerge && !me.toolbar.mode.isEditDiagram && !me.toolbar.mode.isEditOle && !me.toolbar.btnDeleteCell.isDisabled()) {
|
||||||
var cellinfo = me.api.asc_getCellInfo(),
|
var cellinfo = me.api.asc_getCellInfo(),
|
||||||
selectionType = cellinfo.asc_getSelectionType();
|
selectionType = cellinfo.asc_getSelectionType();
|
||||||
|
|
Loading…
Reference in a new issue