Available funds.

This commit is contained in:
Brendon Duncan 2018-07-25 18:46:42 -07:00
commit 507fb21862
3 changed files with 39 additions and 25 deletions

View file

@ -10,6 +10,7 @@ function amountController(configService, $filter, $ionicHistory, $ionicModal, $i
vm.alternativeAmount = '';
vm.alternativeUnit = '';
vm.amountModel = { amount: 0 };
vm.availableFunds = '251.00 USD';
vm.fromWalletId = '';
vm.globalResult = '';
vm.isRequestingSpecificAmount = false;
@ -409,6 +410,7 @@ function amountController(configService, $filter, $ionicHistory, $ionicModal, $i
|| (result >= vm.minShapeshiftAmount && result <= vm.maxShapeshiftAmount));
}
}
console.log('allowSend: ', vm.allowSend);
};
function processResult(val) {