guy 7 years ago
parent
commit
e3d8371af0
  1. 3
      dist/fix/fix.compact.js

3
dist/fix/fix.compact.js vendored

@ -97,8 +97,9 @@
var old = BI.Widget.prototype[name];
old && (BI.Widget.prototype[name] = function () {
this.store && pushTarget(this.store);
return old.apply(this, arguments);
var res = old.apply(this, arguments);
this.store && popTarget();
return res;
});
})

Loading…
Cancel
Save