Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #4964 from jonathansampson/lastpass_focus
Browse files Browse the repository at this point in the history
Fixes #4018
  • Loading branch information
bridiver committed Oct 19, 2016
2 parents c061ebc + a470f9f commit cfb4675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/components/popupWindow.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class PopupWindow extends ImmutableComponent {
}

onKeyDown (e) {
if (e.keyCode === KeyCodes.ESC || e.keyCode === KeyCodes.TAB) {
if (e.keyCode === KeyCodes.ESC) {
windowActions.setPopupWindowDetail()
}
}
Expand Down

0 comments on commit cfb4675

Please sign in to comment.