Browse Source

Merge branch 'master' of http://cloud.finedevelop.com:2015/scm/visual/fineui

# Conflicts:
#	dist/bundle.min.js
#	dist/fineui.min.js
es6
windy 6 years ago
parent
commit
281db3ee03
  1. 7
      dist/bundle.js
  2. 7
      dist/fineui.js
  3. 7
      dist/fineui_without_jquery_polyfill.js
  4. 7
      dist/widget.js
  5. 7
      src/widget/multilayersingletree/multilayersingletree.leveltree.js

7
dist/bundle.js vendored

@ -65607,7 +65607,8 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
baseCls: "bi-multilayer-single-level-tree", baseCls: "bi-multilayer-single-level-tree",
isDefaultInit: false, isDefaultInit: false,
items: [], items: [],
itemsCreator: BI.emptyFn itemsCreator: BI.emptyFn,
chooseType: BI.Selection.Single
}); });
}, },
@ -65686,7 +65687,7 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
el: { el: {
type: "bi.button_tree", type: "bi.button_tree",
chooseType: BI.Selection.Single, chooseType: o.chooseType,
layouts: [{ layouts: [{
type: "bi.vertical" type: "bi.vertical"
}] }]
@ -65704,7 +65705,7 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
element: this, element: this,
scrollable: true, scrollable: true,
items: [this.tree] items: [this.tree]
}) });
}, },
populate: function (nodes) { populate: function (nodes) {

7
dist/fineui.js vendored

@ -65846,7 +65846,8 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
baseCls: "bi-multilayer-single-level-tree", baseCls: "bi-multilayer-single-level-tree",
isDefaultInit: false, isDefaultInit: false,
items: [], items: [],
itemsCreator: BI.emptyFn itemsCreator: BI.emptyFn,
chooseType: BI.Selection.Single
}); });
}, },
@ -65925,7 +65926,7 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
el: { el: {
type: "bi.button_tree", type: "bi.button_tree",
chooseType: BI.Selection.Single, chooseType: o.chooseType,
layouts: [{ layouts: [{
type: "bi.vertical" type: "bi.vertical"
}] }]
@ -65943,7 +65944,7 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
element: this, element: this,
scrollable: true, scrollable: true,
items: [this.tree] items: [this.tree]
}) });
}, },
populate: function (nodes) { populate: function (nodes) {

7
dist/fineui_without_jquery_polyfill.js vendored

@ -49433,7 +49433,8 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
baseCls: "bi-multilayer-single-level-tree", baseCls: "bi-multilayer-single-level-tree",
isDefaultInit: false, isDefaultInit: false,
items: [], items: [],
itemsCreator: BI.emptyFn itemsCreator: BI.emptyFn,
chooseType: BI.Selection.Single
}); });
}, },
@ -49512,7 +49513,7 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
el: { el: {
type: "bi.button_tree", type: "bi.button_tree",
chooseType: BI.Selection.Single, chooseType: o.chooseType,
layouts: [{ layouts: [{
type: "bi.vertical" type: "bi.vertical"
}] }]
@ -49530,7 +49531,7 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
element: this, element: this,
scrollable: true, scrollable: true,
items: [this.tree] items: [this.tree]
}) });
}, },
populate: function (nodes) { populate: function (nodes) {

7
dist/widget.js vendored

@ -7235,7 +7235,8 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
baseCls: "bi-multilayer-single-level-tree", baseCls: "bi-multilayer-single-level-tree",
isDefaultInit: false, isDefaultInit: false,
items: [], items: [],
itemsCreator: BI.emptyFn itemsCreator: BI.emptyFn,
chooseType: BI.Selection.Single
}); });
}, },
@ -7314,7 +7315,7 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
el: { el: {
type: "bi.button_tree", type: "bi.button_tree",
chooseType: BI.Selection.Single, chooseType: o.chooseType,
layouts: [{ layouts: [{
type: "bi.vertical" type: "bi.vertical"
}] }]
@ -7332,7 +7333,7 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
element: this, element: this,
scrollable: true, scrollable: true,
items: [this.tree] items: [this.tree]
}) });
}, },
populate: function (nodes) { populate: function (nodes) {

7
src/widget/multilayersingletree/multilayersingletree.leveltree.js

@ -10,7 +10,8 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
baseCls: "bi-multilayer-single-level-tree", baseCls: "bi-multilayer-single-level-tree",
isDefaultInit: false, isDefaultInit: false,
items: [], items: [],
itemsCreator: BI.emptyFn itemsCreator: BI.emptyFn,
chooseType: BI.Selection.Single
}); });
}, },
@ -89,7 +90,7 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
el: { el: {
type: "bi.button_tree", type: "bi.button_tree",
chooseType: BI.Selection.Single, chooseType: o.chooseType,
layouts: [{ layouts: [{
type: "bi.vertical" type: "bi.vertical"
}] }]
@ -107,7 +108,7 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
element: this, element: this,
scrollable: true, scrollable: true,
items: [this.tree] items: [this.tree]
}) });
}, },
populate: function (nodes) { populate: function (nodes) {

Loading…
Cancel
Save