Skip to content

Commit

Permalink
experiandataquality#28 prevent default tab event on choosing an item …
Browse files Browse the repository at this point in the history
…using the tab key
  • Loading branch information
alexpunct committed Dec 20, 2016
1 parent 73e0b6b commit a6e1d24
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dist/js/contact-data-services.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ ContactDataServices.address = function(customOptions){
e = e.which || e.keyCode;
if (e === 9 /*Tab*/) {
instance.picklist.keyup(e);
e.preventDefault();
return;
}
};
Expand Down

0 comments on commit a6e1d24

Please sign in to comment.