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

Commit 35c9307

Browse files
bekospkozlowski-opensource
authored andcommitted
refactor(dropdownToggle): listen to $locationChangeSuccess
* Listen to event instead of adding an extra `$watch` to the `$digest` cycle. * Remove `$location` DI, that sometimes caused weird issues. Closes #1585
1 parent 34dfff4 commit 35c9307

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/dropdownToggle/dropdownToggle.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
</li>
1313
*/
1414

15-
angular.module('ui.bootstrap.dropdownToggle', []).directive('dropdownToggle', ['$document', '$location', function ($document, $location) {
15+
angular.module('ui.bootstrap.dropdownToggle', []).directive('dropdownToggle', ['$document', function ($document) {
1616
var openElement = null,
1717
closeMenu = angular.noop;
1818
return {
1919
restrict: 'CA',
2020
link: function(scope, element, attrs) {
21-
scope.$watch('$location.path', function() { closeMenu(); });
21+
scope.$on('$locationChangeSuccess', function() { closeMenu(); });
2222
element.parent().bind('click', function() { closeMenu(); });
2323
element.bind('click', function (event) {
2424

src/dropdownToggle/test/dropdownToggle.spec.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ describe('dropdownToggle', function() {
5050
it('should close on $location change', function() {
5151
var elm = dropdown();
5252
elm.find('a').click();
53-
$location.path('/foo');
53+
expect(elm.hasClass('open')).toBe(true);
54+
$rootScope.$broadcast('$locationChangeSuccess');
5455
$rootScope.$apply();
5556
expect(elm.hasClass('open')).toBe(false);
5657
});

0 commit comments

Comments
 (0)