1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 10:29:54 +00:00

Documentation: typo in Range widget documentation (#4288)

The documentation for the range widget refers to radio buttons, instead of range sliders.
This commit is contained in:
Matt Lauber 2019-10-04 10:50:32 -04:00 committed by Jeremy Ruston
parent a9cc292dc9
commit 6e57f16517

View File

@ -7,7 +7,7 @@ type: text/vnd.tiddlywiki
! Introduction
The range widget displays an HTML `<input type="range">` that reflects a given tiddler field numeric value. Adjusting the radio button sets the tiddler field to the value.
The range widget displays an HTML `<input type="range">` that reflects a given tiddler field numeric value. Adjusting the range slider sets the tiddler field to the value.
! Content and Attributes
@ -15,12 +15,12 @@ The content of the `<$range>` widget is ignored.
|!Attribute |!Description |
|tiddler |Title of the tiddler to manipulate (defaults to the [[current tiddler|Current Tiddler]]) |
|field |The field of the //tiddler// bound to the radio button|
|field |The field of the //tiddler// bound to the range slider|
|min |The minimum value to be able to be set by the `<$range>` widget.|
|max |The maximum value to be able to be set by the `<$range>` widget.|
|increment |The minimum amount by which a value may be changed. Defaults to 1.|
|default |The default value displayed if the field is missing or empty.|
|class |CSS classes to be assigned to the label around the radio button |
|class |CSS classes to be assigned to the label around the range slider |
! Examples