prevent to tap multiple times and open multimple views

This commit is contained in:
Javier 2016-10-07 11:27:53 -03:00
parent 3068fc31f4
commit 6183fc69f4
1 changed files with 16 additions and 14 deletions

View File

@ -54,7 +54,7 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
$timeout(function() {
$ionicScrollDelegate.resize();
$scope.$apply();
}, 100);
});
});
};
@ -73,7 +73,7 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
$scope.list = originalList;
$timeout(function() {
$scope.$apply();
}, 10);
});
return;
}
@ -86,6 +86,7 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
};
$scope.goToAmount = function(item) {
$timeout(function() {
item.getAddress(function(err, addr) {
if (err || !addr) {
$log.error(err);
@ -99,6 +100,7 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
toEmail: item.email
})
});
});
};
$scope.$on("$ionicView.beforeEnter", function(event, data) {