remove timeout
This commit is contained in:
parent
f3117cec17
commit
64b8f10f88
1 changed files with 8 additions and 11 deletions
|
|
@ -73,17 +73,14 @@ 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,
|
hardwareBackButtonClose: false
|
||||||
hardwareBackButtonClose: false
|
}).then(function(modal) {
|
||||||
}).then(function(modal) {
|
$scope.BackupNeededModal = modal;
|
||||||
$scope.BackupNeededModal = modal;
|
$scope.BackupNeededModal.show();
|
||||||
$scope.BackupNeededModal.show();
|
});
|
||||||
});
|
|
||||||
}, 100);
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.close = function() {
|
$scope.close = function() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue