Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Select current highlighted item & focus next tabbable element when pressing TAB key #127

Merged
merged 1 commit into from
Jul 30, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/select.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@

$scope.$apply(function() {
var processed = _onKeydown(key);
if (processed) {
if (processed && key != Key.Tab) {
e.preventDefault();
e.stopPropagation();
}
Expand Down