Browse Source

BI-33489

es6
iapyang 6 years ago
parent
commit
a6b56d1860
  1. 5
      src/base/single/text.js

5
src/base/single/text.js

@ -72,6 +72,11 @@ BI.Text = BI.inherit(BI.Single, {
} else {
this.text = this;
}
},
mounted: function () {
var o = this.options;
if (BI.isKey(o.text)) {
this.setText(o.text);
} else if (BI.isKey(o.value)) {

Loading…
Cancel
Save