Browse Source

Pull request #2511: 漏了组件引用

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

* commit '04ab367df8b4243a4a507499d2c3e1f2f2ac5205':
  漏了组件引用
es6
Kira 3 years ago
parent
commit
25263ae634
  1. 5
      src/case/button/item.singleselect.radio.js

5
src/case/button/item.singleselect.radio.js

@ -30,7 +30,10 @@ BI.SingleSelectRadioItem = BI.inherit(BI.BasicButton, {
items: [{ items: [{
type: "bi.center_adapt", type: "bi.center_adapt",
items: [{ items: [{
type: "bi.radio" type: "bi.radio",
ref: function (_ref) {
self.radio = _ref;
},
}] }]
}, { }, {
type: "bi.label", type: "bi.label",

Loading…
Cancel
Save