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

Commit

Permalink
Merge pull request #883 from piebe/fix-metakeys
Browse files Browse the repository at this point in the history
Fix: ignore metakeys when field has focus but dropdown is closed
  • Loading branch information
user378230 committed Mar 28, 2016
2 parents 5f87457 + 2df141c commit ce6a554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var KEY = {
return true;
}

if (e.metaKey) return true;
if (e.metaKey || e.ctrlKey || e.altKey) return true;

This comment has been minimized.

Copy link
@hadason

hadason Feb 15, 2017

This change prevents opening the dropdown when pressing ALT+Down since it's being called in focusser.bind("keyup input").
Was that on purpose? did ALT+Down work by mistake until now?


return false;
},
Expand Down

0 comments on commit ce6a554

Please sign in to comment.