guy 7 years ago
parent
commit
7e3f66f007
  1. 2
      Gruntfile.js
  2. 2
      dist/bundle.min.js
  3. 6
      dist/fix/fix.compact.js

2
Gruntfile.js

@ -285,7 +285,7 @@ module.exports = function (grunt) {
uglify: { uglify: {
options: { options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n' banner: '/*! <%= pkg.name %> */\n'
}, },
dist: { dist: {
files: { files: {

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/fix/fix.compact.js vendored

@ -38,9 +38,9 @@
_init.apply(this, arguments); _init.apply(this, arguments);
}; };
var destroy = BI.Widget.prototype.destroy; var unMount = BI.Widget.prototype._unMount;
BI.Widget.prototype.destroy = function () { BI.Widget.prototype._unMount = function () {
destroy.apply(this, arguments); unMount.apply(this, arguments);
this.store && this.store.destroy(); this.store && this.store.destroy();
BI.each(this._watchers, function (i, unwatch) { BI.each(this._watchers, function (i, unwatch) {
unwatch(); unwatch();

Loading…
Cancel
Save