Fixed typo (#1899)

Correct name in FieldButton member reference.
This commit is contained in:
Andrew n marshall
2018-06-06 10:42:19 -07:00
committed by GitHub
parent e9aae34388
commit dc081e3677

View File

@@ -179,8 +179,8 @@ Blockly.FlyoutButton.prototype.createDom = function() {
this.updateTransform_();
this.mouseUpWrapper_ = Blockly.bindEventWithChecks_(this.svgGroup_, 'mouseup',
this, this.onMouseUp_);
this.onMouseUpWrapper_ = Blockly.bindEventWithChecks_(
this.svgGroup_, 'mouseup', this, this.onMouseUp_);
return this.svgGroup_;
};