1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
This commit is contained in:
Dan Finlay 2016-11-04 12:31:03 -07:00
parent 19f7041ba4
commit bc623bbe34
3 changed files with 8 additions and 12 deletions

View File

@ -2,7 +2,7 @@ const inherits = require('util').inherits
const Component = require('react').Component
const h = require('react-hyperscript')
const connect = require('react-redux').connect
const actions = require('../../actions')
const actions = require('../actions')
// Components
const TabBar = require('../components/tab-bar')
@ -23,9 +23,6 @@ function AddAccountScreen () {
}
AddAccountScreen.prototype.render = function () {
const props = this.props
const state = this.state || {}
const subview = state.subview || 'new'
return (
h('.flex-column', {
@ -38,7 +35,7 @@ AddAccountScreen.prototype.render = function () {
style: {
alignItems: 'center',
padding: '0px 20px',
}
},
}, [
h('i.fa.fa-arrow-left.fa-lg.cursor-pointer', {
onClick: this.goHome.bind(this),
@ -55,7 +52,7 @@ AddAccountScreen.prototype.render = function () {
defaultTab: 'new',
tabSelected: (key) => {
this.setState({ subview: key })
}
},
}),
this.renderNewOrImport(),

View File

@ -254,7 +254,7 @@ function addNewKeyring (type, opts) {
function navigateToNewAccountScreen() {
return {
type: this.NEW_ACCOUNT_SCREEN
type: this.NEW_ACCOUNT_SCREEN,
}
}

View File

@ -30,7 +30,6 @@ function BuyButtonSubview () {
BuyButtonSubview.prototype.render = function () {
const props = this.props
const currentForm = props.buyView.formView
const isLoading = props.isSubLoading
return (
@ -69,7 +68,7 @@ BuyButtonSubview.prototype.render = function () {
}),
]),
],
key: 'coinbase'
key: 'coinbase',
},
{
content: [
@ -83,9 +82,9 @@ BuyButtonSubview.prototype.render = function () {
margin: '0px 5px',
},
}),
])
]),
],
key: 'shapeshift'
key: 'shapeshift',
},
],
defaultTab: 'coinbase',
@ -98,7 +97,7 @@ BuyButtonSubview.prototype.render = function () {
props.dispatch(actions.shapeShiftSubview(props.provider.type))
break
}
}
},
}),
this.formVersionSubview(),