Browse Source

Merge remote-tracking branch 'remotes/origin/BI4.1'

# Conflicts:
#	dist/bundle.min.js
es6
guy 7 years ago
parent
commit
68c76ba0d6
  1. 9
      dist/fix/fix.compact.js

9
dist/fix/fix.compact.js vendored

@ -74,6 +74,15 @@
this.store && (this.store._parent = null, this.store = null);
}
_.each(["mounted", "populate"], function (name) {
var old = BI.Widget.prototype[name];
old && BI.Widget.prototype[name] = function () {
this.store && pushTarget(this.store);
return old.apply(this, arguments);
this.store && popTarget();
};
})
_.each(["each", "map", "reduce", "reduceRight", "find", "filter", "reject", "every", "all", "some", "any", "max", "min",
"sortBy", "groupBy", "indexBy", "countBy", "partition",
"keys", "allKeys", "values", "pairs", "invert",

Loading…
Cancel
Save