aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/unlock.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-03-30 10:30:31 +0800
committerDan <danjm.com@gmail.com>2018-03-30 10:30:31 +0800
commit717623e2e388f488d71bd6e19095645cd8095a99 (patch)
tree7c16960c017585e2823c927199c4b98b93aecbbd /ui/app/unlock.js
parent01e3293b65bb153325479f7366113e037fee659b (diff)
parent9d4be1842e7c56e3bfde529ff555dcae8dec3dbd (diff)
downloadtangerine-wallet-browser-717623e2e388f488d71bd6e19095645cd8095a99.tar.gz
tangerine-wallet-browser-717623e2e388f488d71bd6e19095645cd8095a99.tar.zst
tangerine-wallet-browser-717623e2e388f488d71bd6e19095645cd8095a99.zip
Merge branch 'master' into i3686-txparamundefined-sigrequestsintxlist
Diffstat (limited to 'ui/app/unlock.js')
-rw-r--r--ui/app/unlock.js16
1 files changed, 11 insertions, 5 deletions
diff --git a/ui/app/unlock.js b/ui/app/unlock.js
index e8e1ba051..84d8b7e7c 100644
--- a/ui/app/unlock.js
+++ b/ui/app/unlock.js
@@ -1,7 +1,8 @@
const inherits = require('util').inherits
const Component = require('react').Component
+const PropTypes = require('prop-types')
const h = require('react-hyperscript')
-const connect = require('./metamask-connect')
+const connect = require('react-redux').connect
const actions = require('./actions')
const getCaretCoordinates = require('textarea-caret')
const EventEmitter = require('events').EventEmitter
@@ -10,8 +11,13 @@ const environmentType = require('../../app/scripts/lib/environment-type')
const Mascot = require('./components/mascot')
+UnlockScreen.contextTypes = {
+ t: PropTypes.func,
+}
+
module.exports = connect(mapStateToProps)(UnlockScreen)
+
inherits(UnlockScreen, Component)
function UnlockScreen () {
Component.call(this)
@@ -40,7 +46,7 @@ UnlockScreen.prototype.render = function () {
textTransform: 'uppercase',
color: '#7F8082',
},
- }, this.props.t('appName')),
+ }, this.context.t('appName')),
h('input.large-input', {
type: 'password',
@@ -66,7 +72,7 @@ UnlockScreen.prototype.render = function () {
style: {
margin: 10,
},
- }, this.props.t('login')),
+ }, this.context.t('login')),
h('p.pointer', {
onClick: () => {
@@ -80,7 +86,7 @@ UnlockScreen.prototype.render = function () {
color: 'rgb(247, 134, 28)',
textDecoration: 'underline',
},
- }, this.props.t('restoreFromSeed')),
+ }, this.context.t('restoreFromSeed')),
h('p.pointer', {
onClick: () => {
@@ -93,7 +99,7 @@ UnlockScreen.prototype.render = function () {
textDecoration: 'underline',
marginTop: '32px',
},
- }, this.props.t('classicInterface')),
+ }, this.context.t('classicInterface')),
])
)
}