aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/buy-button-subview.js
diff options
context:
space:
mode:
authorFrankie <frankie.pangilinan@consensys.net>2016-08-19 06:20:26 +0800
committerFrankie <frankie.pangilinan@consensys.net>2016-08-19 06:20:26 +0800
commit3525dc080110e7af1f9544e18b5646c87fb9ae95 (patch)
tree7e2dde7bf928ddec789ec849bb799070f89e455e /ui/app/components/buy-button-subview.js
parent23aeb1c5c1ee066a7b7603c7d6dec329cea3a7ba (diff)
downloadtangerine-wallet-browser-3525dc080110e7af1f9544e18b5646c87fb9ae95.tar.gz
tangerine-wallet-browser-3525dc080110e7af1f9544e18b5646c87fb9ae95.tar.zst
tangerine-wallet-browser-3525dc080110e7af1f9544e18b5646c87fb9ae95.zip
Create a ShapeShift tx in tx History
Diffstat (limited to 'ui/app/components/buy-button-subview.js')
-rw-r--r--ui/app/components/buy-button-subview.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/buy-button-subview.js b/ui/app/components/buy-button-subview.js
index cebb8f3f6..742241e5b 100644
--- a/ui/app/components/buy-button-subview.js
+++ b/ui/app/components/buy-button-subview.js
@@ -54,7 +54,7 @@ BuyButtonSubview.prototype.render = function () {
justifyContent: 'space-around',
},
}, [
- h(currentForm.coinbase ? '.activeForm' : '.inactiveForm', {
+ h(currentForm.coinbase ? '.activeForm' : '.inactiveForm.pointer', {
onClick: () => props.dispatch(actions.coinBaseSubview()),
}, 'Coinbase'),
h('a', {
@@ -67,7 +67,7 @@ BuyButtonSubview.prototype.render = function () {
},
}),
]),
- h(currentForm.shapeshift ? '.activeForm' : '.inactiveForm', {
+ h(currentForm.shapeshift ? '.activeForm' : '.inactiveForm.pointer', {
onClick: () => props.dispatch(actions.shapeShiftSubview(props.provider.type)),
}, 'Shapeshift'),