From dc081e36777dfc1e621eb799fc84bc3626f6834a Mon Sep 17 00:00:00 2001 From: Andrew n marshall Date: Wed, 6 Jun 2018 10:42:19 -0700 Subject: [PATCH] Fixed typo (#1899) Correct name in FieldButton member reference. --- core/flyout_button.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/flyout_button.js b/core/flyout_button.js index 13ce2b1a6..eedeceffe 100644 --- a/core/flyout_button.js +++ b/core/flyout_button.js @@ -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_; };