Skip to content

Commit

Permalink
Merge pull request bitpay#5985 from cmgustavo/bug/backup-w-spending-p…
Browse files Browse the repository at this point in the history
…assword

Fix backup view if spending password active
  • Loading branch information
gabrielbazan7 authored May 9, 2017
2 parents 18319b4 + bde330a commit 289fa5f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/js/controllers/onboarding/backupWarning.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
}

Expand Down

0 comments on commit 289fa5f

Please sign in to comment.