Browse Source

Pull request #1502: bugfix

Merge in VISUAL/fineui from ~GUY/fineui:master to master

* commit 'a3f2063766756084dfce32703daa556cede3ab1b':
  bugfix
es6
guy 4 years ago
parent
commit
ffa03bdc2d
  1. 17
      src/base/single/label/label.js

17
src/base/single/label/label.js

@ -10,21 +10,6 @@ BI.Label = BI.inherit(BI.AbstractLabel, {
keyword: ""
},
_createJson: function () {
var o = this.options;
return {
type: "bi.text",
textAlign: o.textAlign,
whiteSpace: o.whiteSpace,
lineHeight: o.textHeight,
text: o.text,
value: o.value,
py: o.py,
keyword: o.keyword,
highLight: o.highLight
};
},
doRedMark: function () {
this.text.doRedMark.apply(this.text, arguments);
},
@ -34,4 +19,4 @@ BI.Label = BI.inherit(BI.AbstractLabel, {
}
});
BI.shortcut("bi.label", BI.Label);
BI.shortcut("bi.label", BI.Label);

Loading…
Cancel
Save