From 981dc09d85ca388b2bbc71d6b8f2cf8bae5721dd Mon Sep 17 00:00:00 2001 From: Monica Kozbial Date: Tue, 13 Oct 2020 10:55:56 -0700 Subject: [PATCH] Update access level of methods in FieldTextInput (#4359) --- core/field_textinput.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/field_textinput.js b/core/field_textinput.js index bd544f08c..ea3081ad6 100644 --- a/core/field_textinput.js +++ b/core/field_textinput.js @@ -385,7 +385,7 @@ Blockly.FieldTextInput.prototype.widgetCreate_ = function() { /** * Closes the editor, saves the results, and disposes of any events or * dom-references belonging to the editor. - * @private + * @protected */ Blockly.FieldTextInput.prototype.widgetDispose_ = function() { // Non-disposal related things that we do when the editor closes. @@ -430,7 +430,7 @@ Blockly.FieldTextInput.prototype.bindInputEvents_ = function(htmlInput) { /** * Unbind handlers for user input and workspace size changes. - * @private + * @protected */ Blockly.FieldTextInput.prototype.unbindInputEvents_ = function() { if (this.onKeyDownWrapper_) {