Fix bug from server log
This commit is contained in:
parent
b111281778
commit
02d4918eaf
|
@ -1238,7 +1238,7 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
onChangeCropState: function(state) {
|
onChangeCropState: function(state) {
|
||||||
this.documentHolder.menuImgCrop.menu.items[0].setChecked(state, true);
|
this.documentHolder.menuImgCrop && this.documentHolder.menuImgCrop.menu.items[0].setChecked(state, true);
|
||||||
},
|
},
|
||||||
|
|
||||||
onRulerDblClick: function(type) {
|
onRulerDblClick: function(type) {
|
||||||
|
|
|
@ -1273,7 +1273,7 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
onChangeCropState: function(state) {
|
onChangeCropState: function(state) {
|
||||||
this.documentHolder.menuImgCrop.menu.items[0].setChecked(state, true);
|
this.documentHolder.menuImgCrop && this.documentHolder.menuImgCrop.menu.items[0].setChecked(state, true);
|
||||||
},
|
},
|
||||||
|
|
||||||
onDoubleClickOnTableOleObject: function(chart) {
|
onDoubleClickOnTableOleObject: function(chart) {
|
||||||
|
|
|
@ -3335,7 +3335,7 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
onChangeCropState: function(state) {
|
onChangeCropState: function(state) {
|
||||||
this.documentHolder.menuImgCrop.menu.items[0].setChecked(state, true);
|
this.documentHolder.menuImgCrop && this.documentHolder.menuImgCrop.menu.items[0].setChecked(state, true);
|
||||||
},
|
},
|
||||||
|
|
||||||
initEquationMenu: function() {
|
initEquationMenu: function() {
|
||||||
|
|
Loading…
Reference in a new issue