aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/new-account-modal.js
diff options
context:
space:
mode:
authorsdtsui <szehungdanieltsui@gmail.com>2017-08-21 19:46:38 +0800
committersdtsui <szehungdanieltsui@gmail.com>2017-08-21 19:46:38 +0800
commitd82233b95c5c3c4297a2d18b981ec6188de003c1 (patch)
treeb56639a97156a6d1935c7eb0033c990f6999cad5 /ui/app/components/modals/new-account-modal.js
parent80a2cba38ef4fe6c01a624c5a504a7803b1a8316 (diff)
downloadtangerine-wallet-browser-d82233b95c5c3c4297a2d18b981ec6188de003c1.tar.gz
tangerine-wallet-browser-d82233b95c5c3c4297a2d18b981ec6188de003c1.tar.zst
tangerine-wallet-browser-d82233b95c5c3c4297a2d18b981ec6188de003c1.zip
Hook up actions to EditAccountNameModal
Diffstat (limited to 'ui/app/components/modals/new-account-modal.js')
-rw-r--r--ui/app/components/modals/new-account-modal.js28
1 files changed, 14 insertions, 14 deletions
diff --git a/ui/app/components/modals/new-account-modal.js b/ui/app/components/modals/new-account-modal.js
index e4b3ca328..c55d69964 100644
--- a/ui/app/components/modals/new-account-modal.js
+++ b/ui/app/components/modals/new-account-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: {},
}, 'New Account Modal'),
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')),
])
])
}