Browse Source

Merge pull request #581 in VISUAL/fineui from ~TELLER/fineui:bugfix/bugfix to master

* commit '918419eddf1469aeacdeb8941f93fb236921dcfe':
  update
  update
es6
Teller 6 years ago
parent
commit
00330e9d0a
  1. 10
      dist/bundle.js
  2. 22
      dist/bundle.min.js
  3. 10
      dist/core.js
  4. 10
      dist/fineui.js
  5. 22
      dist/fineui.min.js
  6. 9
      src/core/func/function.js

10
dist/bundle.js vendored

@ -27908,7 +27908,12 @@ BI.extend(BI.Func, {
BI.each(items, function (i, item) {
item = BI.deepClone(item);
t = BI.stripEL(item);
text = t[param] || t.text || t.value || t.name || t;
text = BI.find([t[param], t.text, t.value, t.name, t], function (index, val) {
return BI.isNotNull(val);
});
if (BI.isNull(text) || BI.isObject(text)) return;
py = BI.makeFirstPY(text);
text = BI.toUpperCase(text);
py = BI.toUpperCase(py);
@ -28187,7 +28192,8 @@ BI.extend(BI.DOM, {
param: param
};
}
});(function () {
});
(function () {
var constantInjection = {};
BI.constant = function (xtype, cls) {
if (constantInjection[xtype] != null) {

22
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/core.js vendored

@ -27908,7 +27908,12 @@ BI.extend(BI.Func, {
BI.each(items, function (i, item) {
item = BI.deepClone(item);
t = BI.stripEL(item);
text = t[param] || t.text || t.value || t.name || t;
text = BI.find([t[param], t.text, t.value, t.name, t], function (index, val) {
return BI.isNotNull(val);
});
if (BI.isNull(text) || BI.isObject(text)) return;
py = BI.makeFirstPY(text);
text = BI.toUpperCase(text);
py = BI.toUpperCase(py);
@ -28187,7 +28192,8 @@ BI.extend(BI.DOM, {
param: param
};
}
});(function () {
});
(function () {
var constantInjection = {};
BI.constant = function (xtype, cls) {
if (constantInjection[xtype] != null) {

10
dist/fineui.js vendored

@ -28129,7 +28129,12 @@ BI.extend(BI.Func, {
BI.each(items, function (i, item) {
item = BI.deepClone(item);
t = BI.stripEL(item);
text = t[param] || t.text || t.value || t.name || t;
text = BI.find([t[param], t.text, t.value, t.name, t], function (index, val) {
return BI.isNotNull(val);
});
if (BI.isNull(text) || BI.isObject(text)) return;
py = BI.makeFirstPY(text);
text = BI.toUpperCase(text);
py = BI.toUpperCase(py);
@ -28408,7 +28413,8 @@ BI.extend(BI.DOM, {
param: param
};
}
});(function () {
});
(function () {
var constantInjection = {};
BI.constant = function (xtype, cls) {
if (constantInjection[xtype] != null) {

22
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

9
src/core/func/function.js

@ -45,7 +45,12 @@ BI.extend(BI.Func, {
BI.each(items, function (i, item) {
item = BI.deepClone(item);
t = BI.stripEL(item);
text = t[param] || t.text || t.value || t.name || t;
text = BI.find([t[param], t.text, t.value, t.name, t], function (index, val) {
return BI.isNotNull(val);
});
if (BI.isNull(text) || BI.isObject(text)) return;
py = BI.makeFirstPY(text);
text = BI.toUpperCase(text);
py = BI.toUpperCase(py);
@ -324,4 +329,4 @@ BI.extend(BI.DOM, {
param: param
};
}
});
});

Loading…
Cancel
Save