mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-02-10 18:05:32 +08:00
Merge pull request 'Fix bug 77436' (#783) from fix/bug-77436 into release/v9.1.0
Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/web-apps/pulls/783
This commit is contained in:
@ -231,8 +231,12 @@ define([
|
||||
this.diagramEditorView.setControlsDisabled(false);
|
||||
} else
|
||||
if (eventData.type == "shortcut") {
|
||||
if (eventData.data.key == 'escape')
|
||||
if (eventData.data.key == 'escape') {
|
||||
if (externalEditor) {
|
||||
externalEditor.serviceCommand('getChartData');
|
||||
}
|
||||
this.diagramEditorView.hide();
|
||||
}
|
||||
} else
|
||||
if (eventData.type == "canClose") {
|
||||
if (eventData.data.answer === true) {
|
||||
|
||||
Reference in New Issue
Block a user