fix setTab after some animations

This commit is contained in:
Matias Alejo Garcia 2015-05-18 12:43:15 -03:00
commit ff04524444
2 changed files with 4 additions and 3 deletions

View file

@ -37,6 +37,8 @@ angular.module('copayApp.services').factory('go', function($window, $rootScope,
$state.transitionTo(path)
.then(function() {
if (cb) return cb();
}, function() {
if (cb) return cb('animation in progress');
});
hideSidebars();
};