iapyang 6 years ago
parent
commit
91f2011302
  1. 12
      dist/bundle.js
  2. 22
      dist/bundle.min.js
  3. 12
      dist/core.js
  4. 12
      dist/fineui.js
  5. 22
      dist/fineui.min.js
  6. 11
      src/core/func/function.js

12
dist/bundle.js vendored

@ -27908,7 +27908,14 @@ 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;
BI.some([t[param], t.text, t.value, t.name, t], function (index, t) {
text = t;
if (BI.isNotNull(text)) return true;
});
if (BI.isObject(text)) return;
py = BI.makeFirstPY(text);
text = BI.toUpperCase(text);
py = BI.toUpperCase(py);
@ -28187,7 +28194,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

12
dist/core.js vendored

@ -27908,7 +27908,14 @@ 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;
BI.some([t[param], t.text, t.value, t.name, t], function (index, t) {
text = t;
if (BI.isNotNull(text)) return true;
});
if (BI.isObject(text)) return;
py = BI.makeFirstPY(text);
text = BI.toUpperCase(text);
py = BI.toUpperCase(py);
@ -28187,7 +28194,8 @@ BI.extend(BI.DOM, {
param: param
};
}
});(function () {
});
(function () {
var constantInjection = {};
BI.constant = function (xtype, cls) {
if (constantInjection[xtype] != null) {

12
dist/fineui.js vendored

@ -28129,7 +28129,14 @@ 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;
BI.some([t[param], t.text, t.value, t.name, t], function (index, t) {
text = t;
if (BI.isNotNull(text)) return true;
});
if (BI.isObject(text)) return;
py = BI.makeFirstPY(text);
text = BI.toUpperCase(text);
py = BI.toUpperCase(py);
@ -28408,7 +28415,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

11
src/core/func/function.js

@ -45,7 +45,14 @@ 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;
BI.some([t[param], t.text, t.value, t.name, t], function (index, t) {
text = t;
if (BI.isNotNull(text)) return true;
});
if (BI.isObject(text)) return;
py = BI.makeFirstPY(text);
text = BI.toUpperCase(text);
py = BI.toUpperCase(py);
@ -324,4 +331,4 @@ BI.extend(BI.DOM, {
param: param
};
}
});
});

Loading…
Cancel
Save