fix design issue on specific amount feature

This commit is contained in:
Gabriel Bazán 2016-12-22 15:13:53 -03:00
commit 73c2b4488a
6 changed files with 20 additions and 40 deletions

View file

@ -100,6 +100,13 @@ angular.module('copayApp.controllers').controller('addressesController', functio
});
};
$scope.requestSpecificAmount = function() {
$state.go('tabs.receive.amount', {
customAmount: true,
toAddress: $stateParams.toAddress
});
}
$scope.showInformation = function() {
$timeout(function() {
$scope.showInfo = !$scope.showInfo;