Link to multiline text field documentation in JSDoc (#4455)

* Link to FieldMultilineTextInput documentation in JSDoc

* Remove TODO
This commit is contained in:
Monica Kozbial
2020-11-17 13:49:03 -08:00
committed by GitHub
parent 04ea0f1397
commit a523dacacb

View File

@@ -36,14 +36,12 @@ goog.require('Blockly.utils.userAgent');
* text as an argument and returns either the accepted text, a replacement
* text, or null to abort the change.
* @param {Object=} opt_config A map of options used to configure the field.
* See the [field creation documentation]{@link https://developers.google.com/blockly/guides/create-custom-blocks/fields/built-in-fields/text-input#creation}
* See the [field creation documentation]{@link https://developers.google.com/blockly/guides/create-custom-blocks/fields/built-in-fields/multiline-text-input#creation}
* for a list of properties this parameter supports.
* @extends {Blockly.FieldTextInput}
* @constructor
*/
Blockly.FieldMultilineInput = function(opt_value, opt_validator, opt_config) {
// TODO: Once this field is documented the opt_config link should point to its
// creation documentation, rather than the text input field's.
Blockly.FieldMultilineInput.superClass_.constructor.call(this,
opt_value, opt_validator, opt_config);