remove timeout

This commit is contained in:
Gabriel Bazán 2016-09-27 10:59:08 -03:00
commit 64b8f10f88

View file

@ -73,17 +73,14 @@ angular.module('copayApp.controllers').controller('tabReceiveController', functi
};
$scope.openBackupNeededModal = function() {
$timeout(function() {
$ionicModal.fromTemplateUrl('views/includes/backupNeededPopup.html', {
scope: $scope,
backdropClickToClose: false,
hardwareBackButtonClose: false
}).then(function(modal) {
$scope.BackupNeededModal = modal;
$scope.BackupNeededModal.show();
});
}, 100);
$ionicModal.fromTemplateUrl('views/includes/backupNeededPopup.html', {
scope: $scope,
backdropClickToClose: false,
hardwareBackButtonClose: false
}).then(function(modal) {
$scope.BackupNeededModal = modal;
$scope.BackupNeededModal.show();
});
};
$scope.close = function() {