Browse Source

DEC-8536 fix: ie.compact 也更新一下

es6
dailer 5 years ago
parent
commit
81488f9eec
  1. 9
      dist/2.0/fineui.ie.js
  2. 6
      dist/2.0/fineui.ie.min.js
  3. 2
      dist/2.0/fineui.min.js
  4. 9
      dist/bundle.ie.js
  5. 6
      dist/bundle.ie.min.js
  6. 2
      dist/bundle.min.js
  7. 8
      dist/fineui.ie.js
  8. 4
      dist/fineui.ie.min.js
  9. 2
      dist/fineui.min.js
  10. 8
      dist/fix/fix.compact.ie.js
  11. 2
      dist/utils.min.js

9
dist/2.0/fineui.ie.js vendored

@ -88614,7 +88614,11 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
var old = BI.Widget.prototype[name];
old && (BI.Widget.prototype[name] = function () {
this.store && pushTarget(this.store);
var res = old.apply(this, arguments);
try {
var res = old.apply(this, arguments);
} catch (e) {
console.error(e);
}
this.store && popTarget();
return res;
});
@ -88741,7 +88745,8 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
}
}
BI.watch = Fix.watch;
}());(function () {
}());
(function () {
var Events = {
// Bind an event to a `callback` function. Passing `"all"` will bind

6
dist/2.0/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/bundle.ie.js vendored

@ -88614,7 +88614,11 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
var old = BI.Widget.prototype[name];
old && (BI.Widget.prototype[name] = function () {
this.store && pushTarget(this.store);
var res = old.apply(this, arguments);
try {
var res = old.apply(this, arguments);
} catch (e) {
console.error(e);
}
this.store && popTarget();
return res;
});
@ -88741,7 +88745,8 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
}
}
BI.watch = Fix.watch;
}());(function () {
}());
(function () {
var Events = {
// Bind an event to a `callback` function. Passing `"all"` will bind

6
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

8
dist/fineui.ie.js vendored

@ -89443,7 +89443,11 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);(function () {
var old = BI.Widget.prototype[name];
old && (BI.Widget.prototype[name] = function () {
this.store && pushTarget(this.store);
var res = old.apply(this, arguments);
try {
var res = old.apply(this, arguments);
} catch (e) {
console.error(e);
}
this.store && popTarget();
return res;
});
@ -89570,4 +89574,4 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);(function () {
}
}
BI.watch = Fix.watch;
}());
}());

4
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

8
dist/fix/fix.compact.ie.js vendored

@ -189,7 +189,11 @@
var old = BI.Widget.prototype[name];
old && (BI.Widget.prototype[name] = function () {
this.store && pushTarget(this.store);
var res = old.apply(this, arguments);
try {
var res = old.apply(this, arguments);
} catch (e) {
console.error(e);
}
this.store && popTarget();
return res;
});
@ -316,4 +320,4 @@
}
}
BI.watch = Fix.watch;
}());
}());

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save