Commit 0b29f77d authored by Evan W. Patton's avatar Evan W. Patton Committed by Susan Rati Lane

Fix wrong reference to FieldFlydown (was FieldDropdown)

Change-Id: I7be76fd01960ae8f333ea7bd54d8cd8f33dc51e8
parent 9dacdde6
...@@ -231,7 +231,7 @@ Blockly.Flydown.prototype.shouldHide = true; ...@@ -231,7 +231,7 @@ Blockly.Flydown.prototype.shouldHide = true;
Blockly.Flydown.prototype.hide = function() { Blockly.Flydown.prototype.hide = function() {
if (this.shouldHide) { if (this.shouldHide) {
Blockly.Flyout.prototype.hide.call(this); Blockly.Flyout.prototype.hide.call(this);
Blockly.FieldDropdown.openFieldFlydown_ = null; Blockly.FieldFlydown.openFieldFlydown_ = null;
} }
this.shouldHide = true; this.shouldHide = true;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment