commit
47f847d3c2
|
@ -372,6 +372,9 @@ define([
|
||||||
menu && menu.hide();
|
menu && menu.hide();
|
||||||
} else if (format == Asc.c_oAscFileType.PDF || format == Asc.c_oAscFileType.PDFA)
|
} else if (format == Asc.c_oAscFileType.PDF || format == Asc.c_oAscFileType.PDFA)
|
||||||
this._saveAsFormat(menu, format, ext);
|
this._saveAsFormat(menu, format, ext);
|
||||||
|
else {
|
||||||
|
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 {
|
else {
|
||||||
Common.UI.warning({
|
Common.UI.warning({
|
||||||
width: 600,
|
width: 600,
|
||||||
|
@ -385,6 +388,7 @@ define([
|
||||||
}, this)
|
}, this)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else
|
} else
|
||||||
this._saveAsFormat(menu, format, ext);
|
this._saveAsFormat(menu, format, ext);
|
||||||
},
|
},
|
||||||
|
|
|
@ -1341,18 +1341,17 @@ define([
|
||||||
|
|
||||||
if (!value) {
|
if (!value) {
|
||||||
value = this._getApiTextSize();
|
value = this._getApiTextSize();
|
||||||
|
setTimeout(function(){
|
||||||
Common.UI.warning({
|
Common.UI.warning({
|
||||||
msg: this.textFontSizeErr,
|
msg: me.textFontSizeErr,
|
||||||
callback: function() {
|
callback: function() {
|
||||||
_.defer(function(btn) {
|
_.defer(function(btn) {
|
||||||
$('input', combo.cmpEl).focus();
|
$('input', combo.cmpEl).focus();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}, 1);
|
||||||
combo.setRawValue(value);
|
combo.setRawValue(value);
|
||||||
|
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1324,18 +1324,17 @@ define([
|
||||||
|
|
||||||
if (!value) {
|
if (!value) {
|
||||||
value = this._getApiTextSize();
|
value = this._getApiTextSize();
|
||||||
|
setTimeout(function(){
|
||||||
Common.UI.warning({
|
Common.UI.warning({
|
||||||
msg: this.textFontSizeErr,
|
msg: me.textFontSizeErr,
|
||||||
callback: function() {
|
callback: function() {
|
||||||
_.defer(function(btn) {
|
_.defer(function(btn) {
|
||||||
$('input', combo.cmpEl).focus();
|
$('input', combo.cmpEl).focus();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}, 1);
|
||||||
combo.setRawValue(value);
|
combo.setRawValue(value);
|
||||||
|
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1625,18 +1625,17 @@ define([
|
||||||
|
|
||||||
if (!value) {
|
if (!value) {
|
||||||
value = this._getApiTextSize();
|
value = this._getApiTextSize();
|
||||||
|
setTimeout(function(){
|
||||||
Common.UI.warning({
|
Common.UI.warning({
|
||||||
msg: this.textFontSizeErr,
|
msg: me.textFontSizeErr,
|
||||||
callback: function() {
|
callback: function() {
|
||||||
_.defer(function(btn) {
|
_.defer(function(btn) {
|
||||||
$('input', combo.cmpEl).focus();
|
$('input', combo.cmpEl).focus();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}, 1);
|
||||||
combo.setRawValue(value);
|
combo.setRawValue(value);
|
||||||
|
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue