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: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n'
banner: '/*! <%= pkg.name %> */\n'
},
dist: {
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);
};
var destroy = BI.Widget.prototype.destroy;
BI.Widget.prototype.destroy = function () {
destroy.apply(this, arguments);
var unMount = BI.Widget.prototype._unMount;
BI.Widget.prototype._unMount = function () {
unMount.apply(this, arguments);
this.store && this.store.destroy();
BI.each(this._watchers, function (i, unwatch) {
unwatch();

Loading…
Cancel
Save