After delete a wallet, select the latest created

This commit is contained in:
Gustavo Maximiliano Cortez 2014-10-21 11:27:59 -03:00 committed by Matias Alejo Garcia
commit 86d9e9ee2c

View file

@ -85,7 +85,9 @@ angular.module('copayApp.controllers').controller('MoreController',
$scope.deleteWallet = function() {
$rootScope.iden.deleteWallet(w.id, function() {
notification.info('Wallet deleted', $filter('translate')('wallet deleted'));
$location.path('/manage');
$rootScope.wallet = null;
var lastFocused = $rootScope.iden.profile.getLastFocusedWallet();
controllerUtils.bindProfile($scope, $rootScope.iden, lastFocused);
});
};