aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorKevin Serrano <kevin.serrano@consensys.net>2017-03-28 04:05:21 +0800
committerKevin Serrano <kevin.serrano@consensys.net>2017-03-28 04:05:21 +0800
commitc1136a6317399ec033bf17a9ce0b13a2a1c4b0d2 (patch)
tree98cd85f48846832bdf92c83f335f1e51692caeca /ui
parentd6d85d28bbba9700ab9538403130873867dd7cfe (diff)
downloadtangerine-wallet-browser-c1136a6317399ec033bf17a9ce0b13a2a1c4b0d2.tar
tangerine-wallet-browser-c1136a6317399ec033bf17a9ce0b13a2a1c4b0d2.tar.gz
tangerine-wallet-browser-c1136a6317399ec033bf17a9ce0b13a2a1c4b0d2.tar.bz2
tangerine-wallet-browser-c1136a6317399ec033bf17a9ce0b13a2a1c4b0d2.tar.lz
tangerine-wallet-browser-c1136a6317399ec033bf17a9ce0b13a2a1c4b0d2.tar.xz
tangerine-wallet-browser-c1136a6317399ec033bf17a9ce0b13a2a1c4b0d2.tar.zst
tangerine-wallet-browser-c1136a6317399ec033bf17a9ce0b13a2a1c4b0d2.zip
Add link to kovan faucet instructions.
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/buy-button-subview.js11
1 files changed, 9 insertions, 2 deletions
diff --git a/ui/app/components/buy-button-subview.js b/ui/app/components/buy-button-subview.js
index 3074bd7cd..7b993110d 100644
--- a/ui/app/components/buy-button-subview.js
+++ b/ui/app/components/buy-button-subview.js
@@ -121,15 +121,22 @@ BuyButtonSubview.prototype.formVersionSubview = function () {
h('h3.text-transform-uppercase', {
style: {
width: '225px',
+ marginBottom: '15px',
},
}, 'In order to access this feature, please switch to the Main Network'),
- (this.props.network === '3') ? h('h3.text-transform-uppercase', 'or:') : null,
+ ((this.props.network === '3') || (this.props.network === '42')) ? h('h3.text-transform-uppercase', 'or go to the') : null,
(this.props.network === '3') ? h('button.text-transform-uppercase', {
onClick: () => this.props.dispatch(actions.buyEth()),
style: {
marginTop: '15px',
},
- }, 'Go To Test Faucet') : null,
+ }, 'Ropsten Test Faucet') : null,
+ (this.props.network === '42') ? h('button.text-transform-uppercase', {
+ onClick: () => this.props.dispatch(actions.buyEth()),
+ style: {
+ marginTop: '15px',
+ },
+ }, 'Kovan Test Faucet') : null,
])
}
}