remove timeout

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

View file

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