diff options
author | Dan J Miller <danjm.com@gmail.com> | 2018-02-08 08:48:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-08 08:48:10 +0800 |
commit | c50a197ab95b462b4416cbf85139f80db9b70f0c (patch) | |
tree | 6488ba3f3781a446aafb359a5340fd981eea23ff /old-ui/app | |
parent | a9ecf9c6fcbffb2b1984058fa6c6eef3c968b9c4 (diff) | |
parent | 6f14dc4702bf4d4593c4585f95d8b1ca3896043f (diff) | |
download | tangerine-wallet-browser-c50a197ab95b462b4416cbf85139f80db9b70f0c.tar tangerine-wallet-browser-c50a197ab95b462b4416cbf85139f80db9b70f0c.tar.gz tangerine-wallet-browser-c50a197ab95b462b4416cbf85139f80db9b70f0c.tar.bz2 tangerine-wallet-browser-c50a197ab95b462b4416cbf85139f80db9b70f0c.tar.lz tangerine-wallet-browser-c50a197ab95b462b4416cbf85139f80db9b70f0c.tar.xz tangerine-wallet-browser-c50a197ab95b462b4416cbf85139f80db9b70f0c.tar.zst tangerine-wallet-browser-c50a197ab95b462b4416cbf85139f80db9b70f0c.zip |
Merge pull request #3203 from danjm/merge-master-to-uat-feb72018
Merge master to UAT feb72018
Diffstat (limited to 'old-ui/app')
-rw-r--r-- | old-ui/app/add-token.js | 4 | ||||
-rw-r--r-- | old-ui/app/config.js | 46 |
2 files changed, 47 insertions, 3 deletions
diff --git a/old-ui/app/add-token.js b/old-ui/app/add-token.js index 8778f312e..8a3e66978 100644 --- a/old-ui/app/add-token.js +++ b/old-ui/app/add-token.js @@ -25,7 +25,7 @@ inherits(AddTokenScreen, Component) function AddTokenScreen () { this.state = { warning: null, - address: null, + address: '', symbol: 'TOKEN', decimals: 18, } @@ -190,7 +190,7 @@ AddTokenScreen.prototype.validateInputs = function () { const validAddress = ethUtil.isValidAddress(address) if (!validAddress) { - msg += 'Address is invalid. ' + msg += 'Address is invalid.' } const validDecimals = decimals >= 0 && decimals < 36 diff --git a/old-ui/app/config.js b/old-ui/app/config.js index 75198fba5..689385a02 100644 --- a/old-ui/app/config.js +++ b/old-ui/app/config.js @@ -30,7 +30,12 @@ ConfigScreen.prototype.render = function () { var warning = state.warning return ( - h('.flex-column.flex-grow', [ + h('.flex-column.flex-grow', { + style:{ + maxHeight: '465px', + overflowY: 'auto', + }, + }, [ h(Modal, {}, []), @@ -57,6 +62,7 @@ ConfigScreen.prototype.render = function () { h('.flex-space-around', { style: { padding: '20px', + overflow: 'auto', }, }, [ @@ -144,6 +150,40 @@ ConfigScreen.prototype.render = function () { }, 'Reveal Seed Words'), ]), + h('hr.horizontal-line'), + + h('div', { + style: { + marginTop: '20px', + }, + }, [ + + h('p', { + style: { + fontFamily: 'Montserrat Light', + fontSize: '13px', + }, + }, [ + 'Resetting is for developer use only. ', + h('a', { + href: 'http://metamask.helpscoutdocs.com/article/36-resetting-an-account', + target: '_blank', + onClick (event) { this.navigateTo(event.target.href) }, + }, 'Read more.'), + ]), + h('br'), + + h('button', { + style: { + alignSelf: 'center', + }, + onClick (event) { + event.preventDefault() + state.dispatch(actions.resetAccount()) + }, + }, 'Reset Account'), + ]), + ]), ]), ]) @@ -220,3 +260,7 @@ function currentProviderDisplay (metamaskState) { h('span', value), ]) } + +ConfigScreen.prototype.navigateTo = function (url) { + global.platform.openWindow({ url }) +} |