fix profile

This commit is contained in:
Matias Alejo Garcia 2014-11-30 04:03:23 -03:00
commit 436aeda1c3
3 changed files with 9 additions and 3 deletions

View file

@ -23,6 +23,12 @@ angular.module('copayApp.controllers').controller('ProfileController', function(
});
};
$scope.setWallets = function() {
if (!$rootScope.iden) return;
$scope.wallets=$rootScope.iden.listWallets();
};
$scope.downloadWalletBackup = function(w) {
if (!w) return;
backupService.walletDownload(w);