guy 7 years ago
parent
commit
11f9fb0dda
  1. 4
      bi/core.js
  2. 4
      docs/core.js
  3. 2
      src/core/func/dom.js
  4. 2
      src/core/func/function.js

4
bi/core.js

@ -16027,7 +16027,7 @@ BI.extend(jQuery.fn, {
if (!BI.isKey(keyword)) {
return this.text((text + "").replaceAll(" ", " "));
}
keyword = BI.makeFirstPY(keyword + "");
keyword = keyword + "";
keyword = BI.toUpperCase(keyword);
var textLeft = (text || "") + "";
py = (py || BI.makeFirstPY(text)) + "";
@ -16618,7 +16618,7 @@ $(function () {
};
}
var t, text, py;
keyword = BI.makeFirstPY(keyword);
keyword = keyword + "";
keyword = BI.toUpperCase(keyword);
var matched = isArray ? [] : {}, finded = isArray ? [] : {};
BI.each(items, function (i, item) {

4
docs/core.js

@ -22050,7 +22050,7 @@ BI.extend(jQuery.fn, {
if (!BI.isKey(keyword)) {
return this.text((text + "").replaceAll(" ", " "));
}
keyword = BI.makeFirstPY(keyword + "");
keyword = keyword + "";
keyword = BI.toUpperCase(keyword);
var textLeft = (text || "") + "";
py = (py || BI.makeFirstPY(text)) + "";
@ -22641,7 +22641,7 @@ $(function () {
};
}
var t, text, py;
keyword = BI.makeFirstPY(keyword);
keyword = keyword + "";
keyword = BI.toUpperCase(keyword);
var matched = isArray ? [] : {}, finded = isArray ? [] : {};
BI.each(items, function (i, item) {

2
src/core/func/dom.js

@ -22,7 +22,7 @@ BI.extend(jQuery.fn, {
if (!BI.isKey(keyword)) {
return this.text((text + "").replaceAll(" ", " "));
}
keyword = BI.makeFirstPY(keyword + "");
keyword = keyword + "";
keyword = BI.toUpperCase(keyword);
var textLeft = (text || "") + "";
py = (py || BI.makeFirstPY(text)) + "";

2
src/core/func/function.js

@ -24,7 +24,7 @@ $(function () {
};
}
var t, text, py;
keyword = BI.makeFirstPY(keyword);
keyword = keyword + "";
keyword = BI.toUpperCase(keyword);
var matched = isArray ? [] : {}, finded = isArray ? [] : {};
BI.each(items, function (i, item) {

Loading…
Cancel
Save