Fix checkbox delete bug. (marisaleung)

This commit is contained in:
Paul Kaplan 2017-06-23 11:44:36 -04:00
parent fce962c0fc
commit a793911bc9

View file

@ -283,6 +283,18 @@ Blockly.Flyout.prototype.init = function(targetWorkspace) {
this.workspace_.getVariableById =
this.targetWorkspace_.getVariableById.bind(this.targetWorkspace_);
this.workspace_.deleteVariable =
this.targetWorkspace_.deleteVariable.bind(this.targetWorkspace_);
this.workspace_.deleteVariableById =
this.targetWorkspace_.deleteVariableById.bind(this.targetWorkspace_);
this.workspace_.renameVariable =
this.targetWorkspace_.renameVariable.bind(this.targetWorkspace_);
this.workspace_.renameVariableById =
this.targetWorkspace_.renameVariableById.bind(this.targetWorkspace_);
};
/**