Adds superclass destroy call to ImageExportController.

This commit is contained in:
Jason Neufeld 2015-09-28 17:14:48 -07:00
parent a92e198519
commit da1f26291c

View File

@ -24,6 +24,7 @@
ns.ImageExportController.prototype.destroy = function () {
this.pngExportController.destroy();
this.gifExportController.destroy();
this.superclass.destroy.call(this);
};
ns.ImageExportController.prototype.onScalingFactorChange_ = function (evt) {