Browse Source

整理代码

es6
guy 3 years ago
parent
commit
eb0ac796ef
  1. 4
      examples/dev.html
  2. 1
      src/core/wrapper/layout.js

4
examples/dev.html

@ -34,8 +34,8 @@
text: 1
}, {
type: "bi.label",
key: "2",
text: 2
key: "123",
text: "start"
}])
}
}, {

1
src/core/wrapper/layout.js

@ -486,6 +486,7 @@ BI.Layout = BI.inherit(BI.Widget, {
function addNode (vnode, index) {
var opt = self._getOptions(vnode);
var key = opt.key == null ? index : opt.key;
delete self._children[self._getChildName(index)];
return children[key] = self._addElement(index, vnode);
}

Loading…
Cancel
Save