Fix some missed free() calls

This commit is contained in:
nathangray
2020-03-16 14:15:38 -06:00
parent 81266c0eba
commit 5af17679f3
7 changed files with 35 additions and 29 deletions

View File

@@ -70,8 +70,8 @@ var et2_split = /** @class */ (function (_super) {
// Destroy splitter, restore children
this.div.trigger("destroy");
// Destroy dynamic full-height
this.dynheight.free();
_super.prototype.destroy.call(this);
this.dynheight.destroy();
_super.prototype.destroy.call(this);
// Remove placeholder children
if (this._children.length == 0) {
this.div.empty();