Merge pull request #6175 from gabrielbazan7/fix/UItoogle

fix spending password toggle
This commit is contained in:
Javier Donadío 2017-06-05 10:14:04 -03:00 committed by GitHub
commit 5309d2f864
1 changed files with 6 additions and 6 deletions

View File

@ -3,11 +3,7 @@
angular.module('copayApp.controllers').controller('preferencesController',
function($scope, $rootScope, $timeout, $log, $ionicHistory, configService, profileService, fingerprintService, walletService) {
var wallet;
var walletId;
$scope.encryptEnabled = {
value: walletService.isEncrypted(wallet)
};
var walletId;
$scope.hiddenBalanceChange = function() {
var opts = {
@ -80,7 +76,7 @@ angular.module('copayApp.controllers').controller('preferencesController',
wallet = profileService.getWallet(data.stateParams.walletId);
walletId = wallet.credentials.walletId;
$scope.wallet = wallet;
$scope.externalSource = null;
if (!wallet)
@ -92,6 +88,10 @@ angular.module('copayApp.controllers').controller('preferencesController',
value: $scope.wallet.balanceHidden
};
$scope.encryptEnabled = {
value: walletService.isEncrypted(wallet)
};
$scope.touchIdAvailable = fingerprintService.isAvailable();
$scope.touchIdEnabled = {
value: config.touchIdFor ? config.touchIdFor[walletId] : null