[PE] Fix Bug 42915
This commit is contained in:
parent
341518baa5
commit
3c41a8a8db
|
@ -116,11 +116,14 @@ define([
|
||||||
}
|
}
|
||||||
}, this));
|
}, this));
|
||||||
diagramEditor.on('hide', _.bind(function(cmp, message) {
|
diagramEditor.on('hide', _.bind(function(cmp, message) {
|
||||||
this.documentHolder.fireEvent('editcomplete', this.documentHolder);
|
|
||||||
if (this.api) {
|
if (this.api) {
|
||||||
this.api.asc_onCloseChartFrame();
|
this.api.asc_onCloseChartFrame();
|
||||||
this.api.asc_enableKeyEvents(true);
|
this.api.asc_enableKeyEvents(true);
|
||||||
}
|
}
|
||||||
|
var me = this;
|
||||||
|
setTimeout(function(){
|
||||||
|
me.documentHolder.fireEvent('editcomplete', me.documentHolder);
|
||||||
|
}, 10);
|
||||||
}, this));
|
}, this));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue