This commit is contained in:
Javier 2016-07-25 11:23:05 -03:00
commit f6f9e5d7fc
4 changed files with 28 additions and 22 deletions

View file

@ -557,6 +557,13 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
});
};
$scope.openAmountModal = function(address) {
if (isCordova)
$scope.openInputAmountModal(address);
else
$scope.openCustomAmountModal(address);
};
$scope.openInputAmountModal = function(addr) {
var fc = profileService.focusedClient;
$scope.color = fc.backgroundColor;