This commit is contained in:
Rachel Fenichel
2019-10-08 17:29:53 -07:00
committed by Sam El-Husseini
parent f4f9a67903
commit b9dd13cde0

View File

@@ -80,10 +80,10 @@ Blockly.utils.object.inherits(Blockly.RenderedConnection, Blockly.Connection);
* @package
*/
Blockly.RenderedConnection.prototype.dispose = function() {
Blockly.RenderedConnection.superClass_.dispose.call(this);
if (this.tracked_) {
this.db_.removeConnection(this, this.y_);
}
Blockly.RenderedConnection.superClass_.dispose.call(this);
};
/**