Skip to content

Commit

Permalink
Documentation for inputValue, see #762
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegreenberg committed Apr 9, 2018
1 parent dcb5ffd commit 6b847b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/accessibility/Accessibility.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ define( function( require ) {
// if the element has a tag name INPUT.
this._inputType = null;

// @private {string} - the value of the input, only relevant if the tag name is of type "INPUT".
// @private {string|null} - the value of the input, only relevant if the tag name is of type "INPUT". Is a
// string because the `value` attribute is a DOMString. null value indicates no value.
this._inputValue = null;

// @private {boolean} - whether or not the accessible input is considered 'checked', only useful for inputs of
Expand Down

0 comments on commit 6b847b5

Please sign in to comment.