Fix Bug 45283, Bug 25773
This commit is contained in:
parent
556315ab0b
commit
37e1834091
|
@ -1620,10 +1620,12 @@ define([
|
|||
}, this);
|
||||
}
|
||||
|
||||
if (id !== Asc.c_oAscError.ID.ForceSaveTimeout)
|
||||
Common.UI.alert(config);
|
||||
if (id !== Asc.c_oAscError.ID.ForceSaveTimeout) {
|
||||
if (!Common.Utils.ModalWindow.isVisible() || $('.asc-window.modal.alert[data-value=' + id + ']').length<1)
|
||||
Common.UI.alert(config).$window.attr('data-value', id);
|
||||
}
|
||||
|
||||
Common.component.Analytics.trackEvent('Internal Error', id.toString());
|
||||
(id!==undefined) && Common.component.Analytics.trackEvent('Internal Error', id.toString());
|
||||
},
|
||||
|
||||
onCoAuthoringDisconnect: function() {
|
||||
|
|
|
@ -1290,10 +1290,12 @@ define([
|
|||
}, this);
|
||||
}
|
||||
|
||||
if (id !== Asc.c_oAscError.ID.ForceSaveTimeout)
|
||||
Common.UI.alert(config);
|
||||
if (id !== Asc.c_oAscError.ID.ForceSaveTimeout) {
|
||||
if (!Common.Utils.ModalWindow.isVisible() || $('.asc-window.modal.alert[data-value=' + id + ']').length<1)
|
||||
Common.UI.alert(config).$window.attr('data-value', id);
|
||||
}
|
||||
|
||||
Common.component.Analytics.trackEvent('Internal Error', id.toString());
|
||||
(id!==undefined) && Common.component.Analytics.trackEvent('Internal Error', id.toString());
|
||||
},
|
||||
|
||||
onCoAuthoringDisconnect: function() {
|
||||
|
|
|
@ -1532,10 +1532,12 @@ define([
|
|||
}, this);
|
||||
}
|
||||
|
||||
if (id == Asc.c_oAscError.ID.EditingError || $('.asc-window.modal.alert:visible').length < 1 && (id !== Asc.c_oAscError.ID.ForceSaveTimeout)) {
|
||||
Common.UI.alert(config);
|
||||
(id!==undefined) && Common.component.Analytics.trackEvent('Internal Error', id.toString());
|
||||
if (id !== Asc.c_oAscError.ID.ForceSaveTimeout) {
|
||||
if (!Common.Utils.ModalWindow.isVisible() || $('.asc-window.modal.alert[data-value=' + id + ']').length<1)
|
||||
Common.UI.alert(config).$window.attr('data-value', id);
|
||||
}
|
||||
|
||||
(id!==undefined) && Common.component.Analytics.trackEvent('Internal Error', id.toString());
|
||||
},
|
||||
|
||||
onCoAuthoringDisconnect: function() {
|
||||
|
|
Loading…
Reference in a new issue