Merge pull request #5151 from JDonadio/fix/backup-modal

Close modal
This commit is contained in:
Gustavo Maximiliano Cortez 2016-12-14 10:33:38 -03:00 committed by GitHub
commit 8fc5ce22a7
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@ angular.module('copayApp.controllers').controller('backupWarningController', fun
$scope.openPopup = function() {
$ionicModal.fromTemplateUrl('views/includes/screenshotWarningModal.html', {
scope: $scope,
backdropClickToClose: false,
hardwareBackButtonClose: false
backdropClickToClose: true,
hardwareBackButtonClose: true
}).then(function(modal) {
$scope.warningModal = modal;
$scope.warningModal.show();