You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now with #748 we have default labels/description DOM elements, so often we can simplify code. Like:
newNode({tagName: 'input'labelTagName: 'p',labelContent: 'This great label for input'descriptionTagName: 'p',descriptionContent: 'This is a description for the input',containerTagName: 'div'});
would just be
newNode({tagName: 'input'labelContent: 'This great label for input'descriptionContent: 'This is a description for the input',});
Marking for chip away, and tagging for a11 dev meeting.
The text was updated successfully, but these errors were encountered:
We talked about this at an a11y dev meeting, so we are all aware. Thanks for bringing it up @zepumph. We will be revisiting lots of a11y code as we progress with issues like #753. Closing.
Now with #748 we have default labels/description DOM elements, so often we can simplify code. Like:
would just be
Marking for chip away, and tagging for a11 dev meeting.
The text was updated successfully, but these errors were encountered: