Hi there,
I'm putting together a custom recipe that uses an HTML <input type=range>
slider. I would like to put tick marks at set intervals but I can't get these ticks to appear in Prodigy.
For example, my HTML code block is something like this:
<form>
<strong>FLUENCY</strong>
<input type="range" id="fluency_range" style="width: 500px;" min="0" max="100" step="0.1" list="ticks">
<datalist id="ticks">
<option>0</option>
<option>25</option>
<option>50</option>
<option>75</option>
<option>100</option>
</datalist>
</form>
If it helps, I've tested it in both Chrome and Firefox and am using Prodigy v1.10.4. Any suggestions would be appreciated!
Thanks