diff --git a/src/typeahead/typeahead.js b/src/typeahead/typeahead.js index fe40ffc1b5..5183c4d1b7 100644 --- a/src/typeahead/typeahead.js +++ b/src/typeahead/typeahead.js @@ -172,12 +172,12 @@ var Typeahead = (function() { if ($selectable = this.menu.getActiveSelectable()) { if (this.select($selectable)){ $e.preventDefault(); - $e.stopPropagation(); + $e.stopImmediatePropagation(); } } else if(this.autoselect) { if (this.select(this.menu.getTopSelectable())) { $e.preventDefault(); - $e.stopPropagation(); + $e.stopImmediatePropagation(); } } },