wallet and profile backup working on the UX
This commit is contained in:
parent
e1b9f4f859
commit
7a463c9a9d
5 changed files with 32 additions and 25 deletions
|
|
@ -1,3 +1,7 @@
|
|||
'use strict';
|
||||
angular.module('copayApp.controllers').controller('ManageController', function($scope, $rootScope, $location, controllerUtils) {
|
||||
angular.module('copayApp.controllers').controller('ManageController', function($scope, $rootScope, $location, controllerUtils, backupService) {
|
||||
|
||||
$scope.downloadBackup = function() {
|
||||
backupService.profileDownload($rootScope.iden);
|
||||
};
|
||||
});
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ angular.module('copayApp.controllers').controller('MoreController',
|
|||
}
|
||||
|
||||
$scope.downloadBackup = function() {
|
||||
backupService.download(w);
|
||||
backupService.walletDownload(w);
|
||||
}
|
||||
|
||||
$scope.viewBackup = function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue