aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/coinbase-form.js
diff options
context:
space:
mode:
authorDan Finlay <flyswatter@users.noreply.github.com>2017-01-17 02:55:32 +0800
committerGitHub <noreply@github.com>2017-01-17 02:55:32 +0800
commit5dd5619e5db13370c1073246b51d6595f82ed7aa (patch)
treed160676084c7c3029468ec9633598b0e92745645 /ui/app/components/coinbase-form.js
parent15e91f823ce5bc09410b1985aff34ef00825da5b (diff)
parente8e06542e47b41668f196b6db54290490003845b (diff)
downloadtangerine-wallet-browser-5dd5619e5db13370c1073246b51d6595f82ed7aa.tar
tangerine-wallet-browser-5dd5619e5db13370c1073246b51d6595f82ed7aa.tar.gz
tangerine-wallet-browser-5dd5619e5db13370c1073246b51d6595f82ed7aa.tar.bz2
tangerine-wallet-browser-5dd5619e5db13370c1073246b51d6595f82ed7aa.tar.lz
tangerine-wallet-browser-5dd5619e5db13370c1073246b51d6595f82ed7aa.tar.xz
tangerine-wallet-browser-5dd5619e5db13370c1073246b51d6595f82ed7aa.tar.zst
tangerine-wallet-browser-5dd5619e5db13370c1073246b51d6595f82ed7aa.zip
Merge branch 'master' into dev
Diffstat (limited to 'ui/app/components/coinbase-form.js')
-rw-r--r--ui/app/components/coinbase-form.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/components/coinbase-form.js b/ui/app/components/coinbase-form.js
index 693eb2ea8..430a3eead 100644
--- a/ui/app/components/coinbase-form.js
+++ b/ui/app/components/coinbase-form.js
@@ -72,7 +72,7 @@ CoinbaseForm.prototype.render = function () {
lineHeight: '13px',
},
},
- `there is a USD$ 5 a day max and a USD$ 50
+ `there is a USD$ 15 a day max and a USD$ 50
dollar limit per the life time of an account without a
coinbase account. A fee of 3.75% will be aplied to debit/credit cards.`),
@@ -136,14 +136,14 @@ CoinbaseForm.prototype.renderLoading = function () {
function isValidAmountforCoinBase (amount) {
amount = parseFloat(amount)
if (amount) {
- if (amount <= 5 && amount > 0) {
+ if (amount <= 15 && amount > 0) {
return {
valid: true,
}
- } else if (amount > 5) {
+ } else if (amount > 15) {
return {
valid: false,
- message: 'The amount can not be greater then $5',
+ message: 'The amount can not be greater then $15',
}
} else {
return {