mirror of
https://github.com/google/blockly.git
synced 2026-01-08 17:40:09 +01:00
Link to multiline text field documentation in JSDoc (#4455)
* Link to FieldMultilineTextInput documentation in JSDoc * Remove TODO
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user