Ticket #1257 (closed enhancement: invalid)
Change TAB key behaviour in input fields
| Reported by: | tb | Owned by: | MartinBudden |
|---|---|---|---|
| Priority: | major | Milestone: | 2.6.3 |
| Component: | core | Version: | |
| Severity: | low | Keywords: | |
| Cc: |
Description
Change behaviour for SHIFT+TAB in textareas to the default browser behaviour, which in the case of the textarea for a tiddlers body would mean to go back to the tags field.
Here's the tiny change that is needed for that
Story.prototype.onTiddlerKeyPress = function(ev)
{
...
case 9: // Tab
if(!e.shiftKey&&config.options.chkInsertTabs && target.tagName.toLowerCase() == "textarea") {
...
}
Change History
Note: See
TracTickets for help on using
tickets.
