Skip to content

Commit

Permalink
Merge branch 'master' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
valorkin committed Apr 15, 2016
2 parents aa05b4c + 1a719d0 commit b1a95d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/typeahead/typeahead.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ export class Typeahead implements OnInit {

@HostListener('blur', ['$event.target'])
protected onBlur():void {
this.hide();
// Allow typeahead container click event to be triggered requires a timeout
setTimeout(this.hide.bind(this), 10);
}

@HostListener('keydown', ['$event'])
Expand Down

0 comments on commit b1a95d1

Please sign in to comment.