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

@ -5,10 +5,6 @@ angular.module('copayApp.controllers').controller('preferencesController',
var wallet;
var walletId;
$scope.encryptEnabled = {
value: walletService.isEncrypted(wallet)
};
$scope.hiddenBalanceChange = function() {
var opts = {
balance: {
@ -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