diff options
Merge pull request #311 from MetaMask/settings
Remove network option buttons
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | ui/app/config.js | 37 |
2 files changed, 1 insertions, 37 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 032b91d1a..7ac576325 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Current Master +- Remove redundant network option buttons from settings page - Switch out font family Transat for Montserrat ## 2.4.2 2016-06-22 diff --git a/ui/app/config.js b/ui/app/config.js index 4094180dd..c88e7ac6e 100644 --- a/ui/app/config.js +++ b/ui/app/config.js @@ -73,43 +73,6 @@ ConfigScreen.prototype.render = function () { }, }, 'Save'), ]), - - h('div', [ - h('button.spaced', { - style: { - alignSelf: 'center', - }, - onClick (event) { - event.preventDefault() - state.dispatch(actions.setProviderType('mainnet')) - }, - }, 'Use Main Network'), - ]), - - h('div', [ - h('button.spaced', { - style: { - alignSelf: 'center', - }, - onClick (event) { - event.preventDefault() - state.dispatch(actions.setProviderType('testnet')) - }, - }, 'Use Morden Test Network'), - ]), - - h('div', [ - h('button.spaced', { - style: { - alignSelf: 'center', - }, - onClick (event) { - event.preventDefault() - state.dispatch(actions.setRpcTarget('http://localhost:8545/')) - }, - }, 'Use http://localhost:8545'), - ]), - h('hr.horizontal-line'), h('div', { |