diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-21 19:46:38 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-21 19:46:38 +0800 |
commit | d82233b95c5c3c4297a2d18b981ec6188de003c1 (patch) | |
tree | b56639a97156a6d1935c7eb0033c990f6999cad5 /ui/app/components/modals/buy-options-modal.js | |
parent | 80a2cba38ef4fe6c01a624c5a504a7803b1a8316 (diff) | |
download | tangerine-wallet-browser-d82233b95c5c3c4297a2d18b981ec6188de003c1.tar tangerine-wallet-browser-d82233b95c5c3c4297a2d18b981ec6188de003c1.tar.gz tangerine-wallet-browser-d82233b95c5c3c4297a2d18b981ec6188de003c1.tar.bz2 tangerine-wallet-browser-d82233b95c5c3c4297a2d18b981ec6188de003c1.tar.lz tangerine-wallet-browser-d82233b95c5c3c4297a2d18b981ec6188de003c1.tar.xz tangerine-wallet-browser-d82233b95c5c3c4297a2d18b981ec6188de003c1.tar.zst tangerine-wallet-browser-d82233b95c5c3c4297a2d18b981ec6188de003c1.zip |
Hook up actions to EditAccountNameModal
Diffstat (limited to 'ui/app/components/modals/buy-options-modal.js')
-rw-r--r-- | ui/app/components/modals/buy-options-modal.js | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/ui/app/components/modals/buy-options-modal.js b/ui/app/components/modals/buy-options-modal.js index 170ac96b8..76e0da4f1 100644 --- a/ui/app/components/modals/buy-options-modal.js +++ b/ui/app/components/modals/buy-options-modal.js @@ -34,37 +34,37 @@ module.exports = connect(mapStateToProps, mapDispatchToProps)(BuyOptions) // It utilizes modal styles BuyOptions.prototype.render = function () { return h('div', {}, [ - h('div.modal-content.transfers-subview', { + h('div.buy-modal-content.transfers-subview', { }, [ - h('div.modal-content-title-wrapper.flex-column.flex-center', { + h('div.buy-modal-content-title-wrapper.flex-column.flex-center', { style: {}, }, [ - h('div.modal-content-title', { + h('div.buy-modal-content-title', { style: {}, }, 'Transfers'), h('div', {}, 'How would you like to buy Ether?'), ]), - h('div.modal-content-options.flex-column.flex-center', {}, [ + h('div.buy-modal-content-options.flex-column.flex-center', {}, [ - h('div.modal-content-option', { + h('div.buy-modal-content-option', { onClick: () => { const { toCoinbase, address } = this.props toCoinbase(address) }, }, [ - h('div.modal-content-option-title', {}, 'Coinbase'), - h('div.modal-content-option-subtitle', {}, 'Buy with Fiat'), + h('div.buy-modal-content-option-title', {}, 'Coinbase'), + h('div.buy-modal-content-option-subtitle', {}, 'Buy with Fiat'), ]), - h('div.modal-content-option', {}, [ - h('div.modal-content-option-title', {}, 'Shapeshift'), - h('div.modal-content-option-subtitle', {}, 'Trade any digital asset for any other'), + h('div.buy-modal-content-option', {}, [ + h('div.buy-modal-content-option-title', {}, 'Shapeshift'), + h('div.buy-modal-content-option-subtitle', {}, 'Trade any digital asset for any other'), ]), - h('div.modal-content-option', {}, [ - h('div.modal-content-option-title', {}, 'Direct Deposit'), - h('div.modal-content-option-subtitle', {}, 'Deposit from another account'), + h('div.buy-modal-content-option', {}, [ + h('div.buy-modal-content-option-title', {}, 'Direct Deposit'), + h('div.buy-modal-content-option-subtitle', {}, 'Deposit from another account'), ]), ]), @@ -74,7 +74,7 @@ BuyOptions.prototype.render = function () { background: 'white', }, onClick: () => { this.props.hideModal() }, - }, h('div.modal-content-footer#modal-content-footer-text',{}, 'Cancel')), + }, h('div.buy-modal-content-footer#buy-modal-content-footer-text',{}, 'Cancel')), ]) ]) } |