Merge pull request #5985 from cmgustavo/bug/backup-w-spending-password

Fix backup view if spending password active
This commit is contained in:
Gabriel Edgardo Bazán 2017-05-09 17:40:41 -03:00 committed by GitHub
commit 289fa5fda4

View file

@ -17,11 +17,12 @@ angular.module('copayApp.controllers').controller('backupWarningController', fun
});
$scope.close = function() {
$scope.warningModal.hide();
$scope.warningModal.remove();
$state.go($scope.toState, {
walletId: $scope.walletId
});
$timeout(function() {
$state.go($scope.toState, {
walletId: $scope.walletId
});
}, 200);
};
}