Merge pull request #5985 from cmgustavo/bug/backup-w-spending-password
Fix backup view if spending password active
This commit is contained in:
commit
289fa5fda4
1 changed files with 5 additions and 4 deletions
|
|
@ -17,11 +17,12 @@ angular.module('copayApp.controllers').controller('backupWarningController', fun
|
||||||
});
|
});
|
||||||
|
|
||||||
$scope.close = function() {
|
$scope.close = function() {
|
||||||
$scope.warningModal.hide();
|
|
||||||
$scope.warningModal.remove();
|
$scope.warningModal.remove();
|
||||||
$state.go($scope.toState, {
|
$timeout(function() {
|
||||||
walletId: $scope.walletId
|
$state.go($scope.toState, {
|
||||||
});
|
walletId: $scope.walletId
|
||||||
|
});
|
||||||
|
}, 200);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue