[PE mobile] Fix Bug 47072
This commit is contained in:
parent
81f5be8fc9
commit
5724d78651
|
@ -294,7 +294,7 @@ define([
|
|||
_.isUndefined(fontSize) || fontSize=='' ? this.api.FontSizeIn() : fontSize = Math.min(100, ++fontSize);
|
||||
}
|
||||
|
||||
if (! _.isUndefined(fontSize)) {
|
||||
if (!(_.isUndefined(fontSize) || fontSize=='')) {
|
||||
this.api.put_TextPrFontSize(fontSize);
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue