Browse Source

Merge pull request #750 in VISUAL/fineui from ~DAILER/fineui:master to master

* commit 'da13be01fffdaab7f6f2bca67527f3806cbdbc40':
  update
es6
Dailer 6 years ago
parent
commit
4f94e56c9c
  1. 7
      dist/bundle.ie.js
  2. 6
      dist/bundle.ie.min.js
  3. 7
      dist/bundle.js
  4. 6
      dist/bundle.min.js
  5. 7
      dist/core.js
  6. 7
      dist/fineui.ie.js
  7. 6
      dist/fineui.ie.min.js
  8. 7
      dist/fineui.js
  9. 6
      dist/fineui.min.js
  10. 7
      dist/fineui_without_jquery_polyfill.js
  11. 7
      dist/utils.js
  12. 6
      dist/utils.min.js
  13. 7
      src/core/base.js

7
dist/bundle.ie.js vendored

@ -10585,6 +10585,13 @@ if (!_global.BI) {
return sb;
},
init: function () {
// 先把准备环境准备好
while (BI.prepares && BI.prepares.length > 0) {
BI.prepares.shift()();
}
},
has: function (obj, keys) {
if (BI.isArray(keys)) {
if (keys.length === 0) {

6
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

7
dist/bundle.js vendored

@ -10585,6 +10585,13 @@ if (!_global.BI) {
return sb;
},
init: function () {
// 先把准备环境准备好
while (BI.prepares && BI.prepares.length > 0) {
BI.prepares.shift()();
}
},
has: function (obj, keys) {
if (BI.isArray(keys)) {
if (keys.length === 0) {

6
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

7
dist/core.js vendored

@ -10585,6 +10585,13 @@ if (!_global.BI) {
return sb;
},
init: function () {
// 先把准备环境准备好
while (BI.prepares && BI.prepares.length > 0) {
BI.prepares.shift()();
}
},
has: function (obj, keys) {
if (BI.isArray(keys)) {
if (keys.length === 0) {

7
dist/fineui.ie.js vendored

@ -10827,6 +10827,13 @@ if (!_global.BI) {
return sb;
},
init: function () {
// 先把准备环境准备好
while (BI.prepares && BI.prepares.length > 0) {
BI.prepares.shift()();
}
},
has: function (obj, keys) {
if (BI.isArray(keys)) {
if (keys.length === 0) {

6
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

7
dist/fineui.js vendored

@ -10827,6 +10827,13 @@ if (!_global.BI) {
return sb;
},
init: function () {
// 先把准备环境准备好
while (BI.prepares && BI.prepares.length > 0) {
BI.prepares.shift()();
}
},
has: function (obj, keys) {
if (BI.isArray(keys)) {
if (keys.length === 0) {

6
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

7
dist/fineui_without_jquery_polyfill.js vendored

@ -10585,6 +10585,13 @@ if (!_global.BI) {
return sb;
},
init: function () {
// 先把准备环境准备好
while (BI.prepares && BI.prepares.length > 0) {
BI.prepares.shift()();
}
},
has: function (obj, keys) {
if (BI.isArray(keys)) {
if (keys.length === 0) {

7
dist/utils.js vendored

@ -11347,6 +11347,13 @@ if (!_global.BI) {
return sb;
},
init: function () {
// 先把准备环境准备好
while (BI.prepares && BI.prepares.length > 0) {
BI.prepares.shift()();
}
},
has: function (obj, keys) {
if (BI.isArray(keys)) {
if (keys.length === 0) {

6
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

7
src/core/base.js

@ -474,6 +474,13 @@ if (!_global.BI) {
return sb;
},
init: function () {
// 先把准备环境准备好
while (BI.prepares && BI.prepares.length > 0) {
BI.prepares.shift()();
}
},
has: function (obj, keys) {
if (BI.isArray(keys)) {
if (keys.length === 0) {

Loading…
Cancel
Save