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

Commit 59e1006

Browse files
committed
Merge pull request #127 from angular-ui/gotonextctrlwithtab
Select current highlighted item & focus next tabbable element when pressing TAB key
2 parents db9e0dc + 4373f89 commit 59e1006

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@
276276

277277
$scope.$apply(function() {
278278
var processed = _onKeydown(key);
279-
if (processed) {
279+
if (processed && key != Key.Tab) {
280280
e.preventDefault();
281281
e.stopPropagation();
282282
}

0 commit comments

Comments
 (0)