Skip to content

Commit

Permalink
Merge pull request 'fix/se: bug 70600' (#53) from fix/bug-70600 into …
Browse files Browse the repository at this point in the history
…release/v8.2.0
  • Loading branch information
Julia Radzhabova committed Oct 1, 2024
2 parents fe7c225 + a7d1934 commit 13e506a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
Original file line number Diff line number Diff line change
Expand Up @@ -1477,6 +1477,10 @@ define([
},

onChartData: function(btn) {
if (!Common.Controllers.LaunchController.isScriptLoaded()) {
return;
}

var me = this;
var props;
if (me.api){
Expand Down
4 changes: 3 additions & 1 deletion apps/spreadsheeteditor/main/app/controller/Toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,9 @@ define([
},

onEditChartData: function(btn) {
if (!this.editMode) return;
if (!this.editMode || !Common.Controllers.LaunchController.isScriptLoaded()) {
return;
}

var me = this;
var props;
Expand Down
4 changes: 4 additions & 0 deletions apps/spreadsheeteditor/main/app/view/ChartSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -1108,6 +1108,10 @@ define([
},

onSelectData: function() {
if (!Common.Controllers.LaunchController.isScriptLoaded()) {
return;
}

var me = this;
var props;
if (me.api){
Expand Down

0 comments on commit 13e506a

Please sign in to comment.