Fix FieldTextInput showPromptEditor_ (#1350)

This commit is contained in:
Rachel Fenichel
2017-09-27 17:00:44 -07:00
committed by GitHub
parent 703d96bede
commit 7277e897bc

View File

@@ -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) {