-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
there are no parameter labels on radio
or range
elements in the browser
#6
Comments
@landlessness For |
If I understand you correctly the |
[You can easily recreate my experience by running the example server in this driver https://github.com/landlessness/zetta-text-to-speech-osx-driver on a mac and pointing the Zetta browser at it. There are no external dependencies.] In the case of the screenshot above (and the code below) the text input should be labeled words, the radio group should be labeled voice and the range should be labeled rate. Also, where would the .map('say', this.say, [
{ name: 'words', title: 'Words to Speak', type: 'text'},
{ name: 'voice', title: 'Voice Persona', type: 'radio',
value: this._availableVoices},
{ name: 'rate', title: 'Rate of Speech', type: 'range',
min: 90, max: 720, step: 1, units: 'words per minute'} |
@landlessness @AdamMagaluk This looks like a UI issue. I'll dig into it. |
fixed by #23 |
In the screenshot below, the
radio
button is for a parameter labelled 'voice' and therange
is for a parameter labelled 'rate'.The text was updated successfully, but these errors were encountered: