Fix Bug 37355
This commit is contained in:
parent
43de4621f1
commit
4aa68f5eb5
|
@ -159,7 +159,6 @@ define([
|
|||
onSetHistoryData: function(opts) {
|
||||
if (opts.data.error) {
|
||||
var config = {
|
||||
closable: false,
|
||||
title: this.notcriticalErrorTitle,
|
||||
msg: opts.data.error,
|
||||
iconCls: 'warn',
|
||||
|
|
|
@ -444,7 +444,6 @@ define([
|
|||
});
|
||||
}
|
||||
Common.UI.alert({
|
||||
closable: false,
|
||||
title: this.notcriticalErrorTitle,
|
||||
msg: (opts.data.error) ? opts.data.error : this.txtErrorLoadHistory,
|
||||
iconCls: 'warn',
|
||||
|
@ -1252,7 +1251,7 @@ define([
|
|||
this.onLongActionEnd(Asc.c_oAscAsyncActionType['BlockInteraction'], LoadingDocument);
|
||||
|
||||
var config = {
|
||||
closable: false
|
||||
closable: true
|
||||
};
|
||||
|
||||
switch (id)
|
||||
|
@ -1352,6 +1351,7 @@ define([
|
|||
|
||||
case Asc.c_oAscError.ID.Warning:
|
||||
config.msg = this.errorConnectToServer;
|
||||
config.closable = false;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.SessionAbsolute:
|
||||
|
@ -1395,6 +1395,7 @@ define([
|
|||
|
||||
config.title = this.criticalErrorTitle;
|
||||
config.iconCls = 'error';
|
||||
config.closable = false;
|
||||
|
||||
if (this.appOptions.canBackToFolder && !this.appOptions.isDesktopApp && typeof id !== 'string') {
|
||||
config.msg += '<br/><br/>' + this.criticalErrorExtText;
|
||||
|
|
|
@ -1004,7 +1004,7 @@ define([
|
|||
this.onLongActionEnd(Asc.c_oAscAsyncActionType['BlockInteraction'], LoadingDocument);
|
||||
|
||||
var config = {
|
||||
closable: false
|
||||
closable: true
|
||||
};
|
||||
|
||||
switch (id)
|
||||
|
@ -1096,6 +1096,7 @@ define([
|
|||
|
||||
case Asc.c_oAscError.ID.Warning:
|
||||
config.msg = this.errorConnectToServer;
|
||||
config.closable = false;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.SessionAbsolute:
|
||||
|
@ -1140,6 +1141,7 @@ define([
|
|||
|
||||
config.title = this.criticalErrorTitle;
|
||||
config.iconCls = 'error';
|
||||
config.closable = false;
|
||||
|
||||
if (this.appOptions.canBackToFolder && !this.appOptions.isDesktopApp && typeof id !== 'string') {
|
||||
config.msg += '<br/><br/>' + this.criticalErrorExtText;
|
||||
|
|
|
@ -251,7 +251,6 @@ define([
|
|||
clickSaveAsFormat: function(menu, format) {
|
||||
if (format == Asc.c_oAscFileType.CSV) {
|
||||
Common.UI.warning({
|
||||
closable: false,
|
||||
title: this.textWarning,
|
||||
msg: this.warnDownloadAs,
|
||||
buttons: ['ok', 'cancel'],
|
||||
|
|
|
@ -1059,7 +1059,7 @@ define([
|
|||
this.hidePreloader();
|
||||
this.onLongActionEnd(Asc.c_oAscAsyncActionType.BlockInteraction, LoadingDocument);
|
||||
|
||||
var config = {closable: false};
|
||||
var config = {closable: true};
|
||||
|
||||
switch (id) {
|
||||
case Asc.c_oAscError.ID.Unknown:
|
||||
|
@ -1100,47 +1100,38 @@ define([
|
|||
|
||||
case Asc.c_oAscError.ID.FrmlWrongCountParentheses:
|
||||
config.msg = this.errorWrongBracketsCount;
|
||||
config.closable = true;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.FrmlWrongOperator:
|
||||
config.msg = this.errorWrongOperator;
|
||||
config.closable = true;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.FrmlWrongMaxArgument:
|
||||
config.msg = this.errorCountArgExceed;
|
||||
config.closable = true;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.FrmlWrongCountArgument:
|
||||
config.msg = this.errorCountArg;
|
||||
config.closable = true;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.FrmlWrongFunctionName:
|
||||
config.msg = this.errorFormulaName;
|
||||
config.closable = true;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.FrmlAnotherParsingError:
|
||||
config.msg = this.errorFormulaParsing;
|
||||
config.closable = true;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.FrmlWrongArgumentRange:
|
||||
config.msg = this.errorArgsRange;
|
||||
config.closable = true;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.FrmlOperandExpected:
|
||||
config.msg = this.errorOperandExpected;
|
||||
config.closable = true;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.FrmlWrongReferences:
|
||||
config.msg = this.errorFrmlWrongReferences;
|
||||
config.closable = true;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.UnexpectedGuid:
|
||||
|
@ -1246,6 +1237,7 @@ define([
|
|||
|
||||
case Asc.c_oAscError.ID.Warning:
|
||||
config.msg = this.errorConnectToServer;
|
||||
config.closable = false;
|
||||
break;
|
||||
|
||||
case Asc.c_oAscError.ID.LockedWorksheetRename:
|
||||
|
@ -1304,6 +1296,7 @@ define([
|
|||
|
||||
config.title = this.criticalErrorTitle;
|
||||
config.iconCls = 'error';
|
||||
config.closable = false;
|
||||
|
||||
if (this.appOptions.canBackToFolder && !this.appOptions.isDesktopApp && typeof id !== 'string') {
|
||||
config.msg += '<br/><br/>' + this.criticalErrorExtText;
|
||||
|
@ -1822,7 +1815,6 @@ define([
|
|||
onNamedRangeLocked: function() {
|
||||
if ($('.asc-window.modal.alert:visible').length < 1) {
|
||||
Common.UI.alert({
|
||||
closable: false,
|
||||
msg: this.errorCreateDefName,
|
||||
title: this.notcriticalErrorTitle,
|
||||
iconCls: 'warn',
|
||||
|
|
|
@ -271,7 +271,6 @@ define([
|
|||
if (state == 'ok') {
|
||||
if (this.locked) {
|
||||
Common.UI.alert({
|
||||
closable: false,
|
||||
msg: this.errorCreateDefName,
|
||||
title: this.notcriticalErrorTitle,
|
||||
iconCls: 'warn',
|
||||
|
|
Loading…
Reference in a new issue