Browse Source

Merge pull request #659 in VISUAL/fineui from ~GUY/fineui:master to master

* commit '75e0590a8ebc7245caa6d8555b8a9687a2db5070':
  update
es6
guy 6 years ago
parent
commit
c9854b3c5a
  1. 1
      dist/bundle.js
  2. 6
      dist/bundle.min.js
  3. 1
      dist/core.js
  4. 1
      dist/fineui.js
  5. 6
      dist/fineui.min.js
  6. 2
      dist/utils.min.js
  7. 1
      src/core/platform/web/dom.js

1
dist/bundle.js vendored

@ -18536,6 +18536,7 @@ BI.prepares.push(function () {
toElement.on(eventKey, handler);
});
});
toElement.data(fromElement.data());
var fromChildren = fromElement.children(), toChildren = toElement.children();
if(fromChildren.length !== toChildren.length) {
throw new Error("不匹配");

6
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

1
dist/core.js vendored

@ -18536,6 +18536,7 @@ BI.prepares.push(function () {
toElement.on(eventKey, handler);
});
});
toElement.data(fromElement.data());
var fromChildren = fromElement.children(), toChildren = toElement.children();
if(fromChildren.length !== toChildren.length) {
throw new Error("不匹配");

1
dist/fineui.js vendored

@ -18778,6 +18778,7 @@ BI.prepares.push(function () {
toElement.on(eventKey, handler);
});
});
toElement.data(fromElement.data());
var fromChildren = fromElement.children(), toChildren = toElement.children();
if(fromChildren.length !== toChildren.length) {
throw new Error("不匹配");

6
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

1
src/core/platform/web/dom.js

@ -15,6 +15,7 @@
toElement.on(eventKey, handler);
});
});
toElement.data(fromElement.data());
var fromChildren = fromElement.children(), toChildren = toElement.children();
if(fromChildren.length !== toChildren.length) {
throw new Error("不匹配");

Loading…
Cancel
Save