Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit 313ba83

Browse files
deegwesleycho
authored andcommitted
fix(typeahead): update isOpen on escape
This updates isOpen immediately when pressing escape button. Fixes #5579 Closes #5587
1 parent 94c34b7 commit 313ba83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/typeahead/typeahead.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ angular.module('ui.bootstrap.typeahead', ['ui.bootstrap.debounce', 'ui.bootstrap
401401
evt.stopPropagation();
402402

403403
resetMatches();
404-
scope.$digest();
404+
scope.$parent.$digest();
405405
break;
406406
case 38:
407407
scope.activeIdx = (scope.activeIdx > 0 ? scope.activeIdx : scope.matches.length) - 1;

0 commit comments

Comments
 (0)