This commit is contained in:
Gabriel Bazán 2015-11-30 18:57:18 -03:00
commit 1b38a42292
2 changed files with 18 additions and 41 deletions

View file

@ -57,17 +57,9 @@ angular.module('copayApp.services').factory('go', function($window, $rootScope,
if (fc && !fc.isComplete()) {
root.path('copayers');
} else {
if (delayed) {
$timeout(function() {
root.path('walletHome', function() {
$rootScope.$emit('Local/SetTab', 'walletHome', true);
});
}, 100);
} else {
root.path('walletHome', function() {
$rootScope.$emit('Local/SetTab', 'walletHome', true);
});
}
root.path('walletHome', function() {
$rootScope.$emit('Local/SetTab', 'walletHome', true);
});
}
};