Skip to content

Commit

Permalink
Merge pull request 'Fix Bug 72286' (#206) from fix/bugfix into releas…
Browse files Browse the repository at this point in the history
…e/v8.3.0
  • Loading branch information
Julia Radzhabova committed Dec 24, 2024
2 parents 2e469e0 + e944e62 commit 2cd20fd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/documenteditor/main/app/view/LeftMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ define([
config && !!config.feedback && !!config.feedback.url ?
window.open(config.feedback.url) :
window.open('{{SUPPORT_URL}}');
Common.NotificationCenter.trigger('edit:complete', this);
}, this));

/** coauthoring begin **/
Expand Down
1 change: 1 addition & 0 deletions apps/pdfeditor/main/app/view/LeftMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ define([
config && !!config.feedback && !!config.feedback.url ?
window.open(config.feedback.url) :
window.open('{{SUPPORT_URL}}');
Common.NotificationCenter.trigger('edit:complete', this);
}, this));

/** coauthoring begin **/
Expand Down
1 change: 1 addition & 0 deletions apps/presentationeditor/main/app/view/LeftMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ define([
config && !!config.feedback && !!config.feedback.url ?
window.open(config.feedback.url) :
window.open('{{SUPPORT_URL}}');
Common.NotificationCenter.trigger('edit:complete', this);
}, this));

/** coauthoring begin **/
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/app/view/LeftMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ define([
config && !!config.feedback && !!config.feedback.url ?
window.open(config.feedback.url) :
window.open('{{SUPPORT_URL}}');
Common.NotificationCenter.trigger('edit:complete', this);
}, this));

/** coauthoring begin **/
Expand Down
1 change: 1 addition & 0 deletions apps/visioeditor/main/app/view/LeftMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ define([
config && !!config.feedback && !!config.feedback.url ?
window.open(config.feedback.url) :
window.open('{{SUPPORT_URL}}');
Common.NotificationCenter.trigger('edit:complete', this);
}, this));

this.btnChat = new Common.UI.Button({
Expand Down

0 comments on commit 2cd20fd

Please sign in to comment.