commit
47f847d3c2
|
@ -373,17 +373,21 @@ define([
|
|||
} else if (format == Asc.c_oAscFileType.PDF || format == Asc.c_oAscFileType.PDFA)
|
||||
this._saveAsFormat(menu, format, ext);
|
||||
else {
|
||||
Common.UI.warning({
|
||||
width: 600,
|
||||
title: this.notcriticalErrorTitle,
|
||||
msg: Common.Utils.String.format(this.warnDownloadAsPdf, fileType.toUpperCase()),
|
||||
buttons: ['ok', 'cancel'],
|
||||
callback: _.bind(function(btn){
|
||||
if (btn == 'ok') {
|
||||
me._saveAsFormat(menu, format, ext, new AscCommon.asc_CTextParams(Asc.c_oAscTextAssociation.PlainLine));
|
||||
}
|
||||
}, this)
|
||||
});
|
||||
if (format == Asc.c_oAscFileType.TXT || format == Asc.c_oAscFileType.RTF) // don't show message about pdf/xps/oxps
|
||||
me._saveAsFormat(menu, format, ext, new AscCommon.asc_CTextParams(Asc.c_oAscTextAssociation.PlainLine));
|
||||
else {
|
||||
Common.UI.warning({
|
||||
width: 600,
|
||||
title: this.notcriticalErrorTitle,
|
||||
msg: Common.Utils.String.format(this.warnDownloadAsPdf, fileType.toUpperCase()),
|
||||
buttons: ['ok', 'cancel'],
|
||||
callback: _.bind(function(btn){
|
||||
if (btn == 'ok') {
|
||||
me._saveAsFormat(menu, format, ext, new AscCommon.asc_CTextParams(Asc.c_oAscTextAssociation.PlainLine));
|
||||
}
|
||||
}, this)
|
||||
});
|
||||
}
|
||||
}
|
||||
} else
|
||||
this._saveAsFormat(menu, format, ext);
|
||||
|
|
|
@ -1341,18 +1341,17 @@ define([
|
|||
|
||||
if (!value) {
|
||||
value = this._getApiTextSize();
|
||||
|
||||
Common.UI.warning({
|
||||
msg: this.textFontSizeErr,
|
||||
callback: function() {
|
||||
_.defer(function(btn) {
|
||||
$('input', combo.cmpEl).focus();
|
||||
})
|
||||
}
|
||||
});
|
||||
|
||||
setTimeout(function(){
|
||||
Common.UI.warning({
|
||||
msg: me.textFontSizeErr,
|
||||
callback: function() {
|
||||
_.defer(function(btn) {
|
||||
$('input', combo.cmpEl).focus();
|
||||
})
|
||||
}
|
||||
});
|
||||
}, 1);
|
||||
combo.setRawValue(value);
|
||||
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -1324,18 +1324,17 @@ define([
|
|||
|
||||
if (!value) {
|
||||
value = this._getApiTextSize();
|
||||
|
||||
Common.UI.warning({
|
||||
msg: this.textFontSizeErr,
|
||||
callback: function() {
|
||||
_.defer(function(btn) {
|
||||
$('input', combo.cmpEl).focus();
|
||||
})
|
||||
}
|
||||
});
|
||||
|
||||
setTimeout(function(){
|
||||
Common.UI.warning({
|
||||
msg: me.textFontSizeErr,
|
||||
callback: function() {
|
||||
_.defer(function(btn) {
|
||||
$('input', combo.cmpEl).focus();
|
||||
})
|
||||
}
|
||||
});
|
||||
}, 1);
|
||||
combo.setRawValue(value);
|
||||
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -1625,18 +1625,17 @@ define([
|
|||
|
||||
if (!value) {
|
||||
value = this._getApiTextSize();
|
||||
|
||||
Common.UI.warning({
|
||||
msg: this.textFontSizeErr,
|
||||
callback: function() {
|
||||
_.defer(function(btn) {
|
||||
$('input', combo.cmpEl).focus();
|
||||
})
|
||||
}
|
||||
});
|
||||
|
||||
setTimeout(function(){
|
||||
Common.UI.warning({
|
||||
msg: me.textFontSizeErr,
|
||||
callback: function() {
|
||||
_.defer(function(btn) {
|
||||
$('input', combo.cmpEl).focus();
|
||||
})
|
||||
}
|
||||
});
|
||||
}, 1);
|
||||
combo.setRawValue(value);
|
||||
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue