Skip to content

Commit

Permalink
fix/[se]: bug 70183
Browse files Browse the repository at this point in the history
  • Loading branch information
sekiju committed Sep 17, 2024
1 parent 335c171 commit f8cfafe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/spreadsheeteditor/main/app/controller/Spellcheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ define([
Common.NotificationCenter.trigger('script:loaded:spellcheck');
if (this.api) {
this.api.asc_registerCallback('asc_onSpellCheckVariantsFound', _.bind(this.onSpellCheckVariantsFound, this));
this.api.asc_registerCallback('asc_onEditCell', _.bind(this.onApiEditCell, this));
}
},

setApi: function(api) {
this.api = api;
this.api.asc_registerCallback('asc_onEditCell', _.bind(this.onApiEditCell, this));
return this;
},

Expand Down

0 comments on commit f8cfafe

Please sign in to comment.