[DE] Fix Bug 35757.
This commit is contained in:
parent
33efca6c3e
commit
ea4b7f4366
|
@ -2199,14 +2199,10 @@ define([
|
||||||
/** coauthoring begin **/
|
/** coauthoring begin **/
|
||||||
onCollaborativeChanges: function () {
|
onCollaborativeChanges: function () {
|
||||||
if (this._state.hasCollaborativeChanges) return;
|
if (this._state.hasCollaborativeChanges) return;
|
||||||
if (!this.btnSave.rendered) {
|
if (!this.btnSave.rendered || this._state.previewmode) {
|
||||||
this.needShowSynchTip = true;
|
this.needShowSynchTip = true;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (this._state.previewmode) {
|
|
||||||
if (!DE.getController('Main')._state.fastCoauth) this.needShowSynchTip = true;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
this._state.hasCollaborativeChanges = true;
|
this._state.hasCollaborativeChanges = true;
|
||||||
var iconEl = $('.icon', this.btnSave.cmpEl);
|
var iconEl = $('.icon', this.btnSave.cmpEl);
|
||||||
|
|
Loading…
Reference in a new issue