aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/actions.js
diff options
context:
space:
mode:
authorFrankie <frankie.pangilinan@consensys.net>2016-09-16 01:24:05 +0800
committerFrankie <frankie.pangilinan@consensys.net>2016-09-16 01:24:05 +0800
commitef0b535d94d97827b4bfc471e4d950d90d637fa3 (patch)
tree1f59298dffe5992e3e1552b0460dd442aa3412c9 /ui/app/actions.js
parent17eb53cfcd77b3832f92533a53d82726d1e152e7 (diff)
downloadtangerine-wallet-browser-ef0b535d94d97827b4bfc471e4d950d90d637fa3.tar.gz
tangerine-wallet-browser-ef0b535d94d97827b4bfc471e4d950d90d637fa3.tar.zst
tangerine-wallet-browser-ef0b535d94d97827b4bfc471e4d950d90d637fa3.zip
Drop the buy button in the confTx view if account does not have enough eth
Diffstat (limited to 'ui/app/actions.js')
-rw-r--r--ui/app/actions.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/actions.js b/ui/app/actions.js
index 289366db0..0cce9065e 100644
--- a/ui/app/actions.js
+++ b/ui/app/actions.js
@@ -479,9 +479,10 @@ function showAccountsPage () {
}
}
-function showConfTxPage () {
+function showConfTxPage (transForward = true) {
return {
type: actions.SHOW_CONF_TX_PAGE,
+ transForward: transForward,
}
}