Ticket #1257 (closed enhancement: invalid)

Opened 3 years ago

Last modified 2 years ago

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

Changed 3 years ago by FND

  • priority changed from undefined to major
  • type changed from defect to enhancement
  • severity changed from undefined to low
  • milestone set to 2.7

Changed 3 years ago by MartinBudden

  • owner changed from JeremyRuston to MartinBudden

Changed 3 years ago by MartinBudden

  • milestone changed from 2.6.2 to 2.6.3

Changed 2 years ago by MartinBudden

  • status changed from new to closed
  • resolution set to invalid

When editing an existing tiddler the current behavior is that shift+tab moves from the text area to the title area - surely this is correct.

When editing a new tiddler, the behavior is now as defined in ticket:1248.

Note: See TracTickets for help on using tickets.