Fix backup view if spending password actived
This commit is contained in:
parent
6b8d7db783
commit
bde330a7e9
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