added controls to ux

This commit is contained in:
Ivan Socolsky 2014-12-01 12:13:11 -03:00
commit 90136f1c30
2 changed files with 36 additions and 0 deletions

View file

@ -4,6 +4,7 @@ angular.module('copayApp.controllers').controller('ProfileController', function(
$scope.isSafari = Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0;
$rootScope.title = 'Profile';
$scope.hideAdv = true;
$scope.downloadProfileBackup = function() {
backupService.profileDownload($rootScope.iden);
@ -53,4 +54,7 @@ angular.module('copayApp.controllers').controller('ProfileController', function(
});
};
$scope.deleteProfile = function () {
};
});