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

Add documentation for edit-text tabindex attribute (#3833)

* add tabindex attr to edit-text documentation

* add tabindex to edit widget documentation
This commit is contained in:
Simon Huber 2019-03-09 18:45:59 +01:00 committed by Jeremy Ruston
parent 2dc70682cd
commit 648c7ccd1f
2 changed files with 3 additions and 1 deletions

View File

@ -23,7 +23,8 @@ The content of the `<$edit-text>` widget is ignored.
|class |A CSS class to be assigned to the generated HTML editing element |
|placeholder |Placeholder text to be displayed when the edit field is empty |
|focusPopup |Title of a state tiddler for a popup that is displayed when the editing element has focus |
|focus |Set to "yes" or "true" to automatically focus the editor after creation |
|focus |Set to "yes" or "true" to automatically focus the editor after creation |
|tabindex |Sets the `tabindex` attribute of the input or textarea to the given value |
|tag |Overrides the generated HTML editing element tag. For a multi-line editor use `tag=textarea`. For a single-line editor use `tag=input` |
|type |Overrides the generated HTML editing element `type` attribute |
|size |The size of the input field (in characters) |

View File

@ -17,3 +17,4 @@ The content of the `<$edit>` widget is ignored.
|field |The field to edit (defaults to `text`). Takes precedence over the `index` attribute |
|index |The index to edit |
|class |A CSS class to be added the generated editing widget |
|tabindex |Sets the `tabindex` attribute of the input or textarea to the given value |