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

Commit

Permalink
fix(dropdown): call toggle after animation
Browse files Browse the repository at this point in the history
- Change to call toggle after animation completes

Closes #3513
Closes #3655
Fixes #3511
  • Loading branch information
Sneha Jain authored and wesleycho committed Jul 19, 2015
1 parent b72efed commit 054341b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
9 changes: 5 additions & 4 deletions src/dropdown/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,11 @@ angular.module('ui.bootstrap.dropdown', ['ui.bootstrap.position'])
});
}

$animate[isOpen ? 'addClass' : 'removeClass'](self.$element, openClass);
$animate[isOpen ? 'addClass' : 'removeClass'](self.$element, openClass).then(function() {
if (angular.isDefined(isOpen) && isOpen !== wasOpen) {
toggleInvoker($scope, { open: !!isOpen });
}
});

if ( isOpen ) {
if (self.dropdownMenuTemplateUrl) {
Expand Down Expand Up @@ -202,9 +206,6 @@ angular.module('ui.bootstrap.dropdown', ['ui.bootstrap.position'])
}

setIsOpen($scope, isOpen);
if (angular.isDefined(isOpen) && isOpen !== wasOpen) {
toggleInvoker($scope, { open: !!isOpen });
}
});

$scope.$on('$locationChangeSuccess', function() {
Expand Down
13 changes: 11 additions & 2 deletions src/dropdown/test/dropdown.spec.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
describe('dropdownToggle', function() {
var $compile, $rootScope, $document, $templateCache, dropdownConfig, element;
var $compile, $rootScope, $document, $templateCache, dropdownConfig, element, $browser;

beforeEach(module('ui.bootstrap.dropdown'));

beforeEach(inject(function(_$compile_, _$rootScope_, _$document_, _$templateCache_, _dropdownConfig_) {
beforeEach(inject(function(_$compile_, _$rootScope_, _$document_, _$templateCache_, _dropdownConfig_, _$browser_) {
$compile = _$compile_;
$rootScope = _$rootScope_;
$document = _$document_;
$templateCache = _$templateCache_;
dropdownConfig = _dropdownConfig_;
$browser = _$browser_;
}));

afterEach(function() {
Expand Down Expand Up @@ -322,9 +323,11 @@ describe('dropdownToggle', function() {
it('should call it correctly when toggles', function() {
$rootScope.isopen = true;
$rootScope.$digest();
$browser.defer.flush();
expect($rootScope.toggleHandler).toHaveBeenCalledWith(true);

clickDropdownToggle();
$browser.defer.flush();
expect($rootScope.toggleHandler).toHaveBeenCalledWith(false);
});
});
Expand All @@ -338,16 +341,19 @@ describe('dropdownToggle', function() {
});

it('should not have been called initially', function() {
$browser.defer.flush();
expect($rootScope.toggleHandler).not.toHaveBeenCalled();
});

it('should call it correctly when toggles', function() {
$rootScope.isopen = false;
$rootScope.$digest();
$browser.defer.flush();
expect($rootScope.toggleHandler).toHaveBeenCalledWith(false);

$rootScope.isopen = true;
$rootScope.$digest();
$browser.defer.flush();
expect($rootScope.toggleHandler).toHaveBeenCalledWith(true);
});
});
Expand All @@ -360,14 +366,17 @@ describe('dropdownToggle', function() {
});

it('should not have been called initially', function() {
$browser.defer.flush();
expect($rootScope.toggleHandler).not.toHaveBeenCalled();
});

it('should call it when clicked', function() {
clickDropdownToggle();
$browser.defer.flush();
expect($rootScope.toggleHandler).toHaveBeenCalledWith(true);

clickDropdownToggle();
$browser.defer.flush();
expect($rootScope.toggleHandler).toHaveBeenCalledWith(false);
});
});
Expand Down

0 comments on commit 054341b

Please sign in to comment.