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
{{ message }}
This repository has been archived by the owner on Nov 11, 2021. It is now read-only.
There are a couple of mistakes that lead to the text fields not having labels:
The voice, volume, and rate labels use a for attribute with a prefixless ID (correct), but the actual form fields have IDs with "js-" prefix (incorrect as ID isn't just for JS). Fix here is to remove the js- prefix from the IDs and change the JS to hook into those new IDs.
The initial text to speech input doesn't have a label. It would be better to have a visible label to make it more obvious what it is. If that can't work then add a placeholder attribute and an aria-label attribute.
The text was updated successfully, but these errors were encountered:
There are a couple of mistakes that lead to the text fields not having labels:
The voice, volume, and rate labels use a for attribute with a prefixless ID (correct), but the actual form fields have IDs with "js-" prefix (incorrect as ID isn't just for JS). Fix here is to remove the js- prefix from the IDs and change the JS to hook into those new IDs.
The initial text to speech input doesn't have a label. It would be better to have a visible label to make it more obvious what it is. If that can't work then add a placeholder attribute and an aria-label attribute.
The text was updated successfully, but these errors were encountered: