From 7277e897bc456de13a5c46ef0e1099e00fef80c9 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Wed, 27 Sep 2017 17:00:44 -0700 Subject: [PATCH] Fix FieldTextInput showPromptEditor_ (#1350) --- core/field_textinput.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/field_textinput.js b/core/field_textinput.js index b342a7e8e..8be3eb5af 100644 --- a/core/field_textinput.js +++ b/core/field_textinput.js @@ -153,7 +153,7 @@ Blockly.FieldTextInput.prototype.showEditor_ = function(opt_quietInput) { * Mobile browsers have issues with in-line textareas (focus and keyboards). * @private */ -Blockly.FieldTextInput.showPromptEditor_ = function() { +Blockly.FieldTextInput.prototype.showPromptEditor_ = function() { var fieldText = this; Blockly.prompt(Blockly.Msg.CHANGE_VALUE_TITLE, this.text_, function(newValue) {