fix order in events

This commit is contained in:
Matias Alejo Garcia 2014-11-30 01:02:18 -03:00
commit 5e92ae96ac
5 changed files with 14 additions and 14 deletions

View file

@ -24,7 +24,6 @@ angular.module('copayApp.controllers').controller('HomeController', function($sc
}
$rootScope.starting = true;
identityService.open(form.email.$modelValue, form.password.$modelValue, function(err) {
console.log('[home.js.27]'); //TODO
$rootScope.starting = false;
if (err) {
copay.logger.warn(err);

View file

@ -33,7 +33,9 @@ angular.module('copayApp.controllers').controller('SidebarController', function(
};
$scope.switchWallet = function(wid) {
$scope.walletSelection = false;
identityService.setFocusedWallet(wid);
identityService.goWalletHome();
};
$scope.toggleWalletSelection = function() {