aboutsummaryrefslogtreecommitdiffstats
path: root/old-ui/app/settings.js
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2019-02-15 05:03:21 +0800
committerWhymarrh Whitby <whymarrh.whitby@gmail.com>2019-02-21 01:48:46 +0800
commit3c73781787f7aab6cdba0b738e4844a26aab5d8e (patch)
tree5a98f0acdcda6d3dd1a8368be6bb0ddf77c8fa6a /old-ui/app/settings.js
parent41f89ac7edf994f3d15d32d3d82d8d2b03dec481 (diff)
downloadtangerine-wallet-browser-3c73781787f7aab6cdba0b738e4844a26aab5d8e.tar.gz
tangerine-wallet-browser-3c73781787f7aab6cdba0b738e4844a26aab5d8e.tar.zst
tangerine-wallet-browser-3c73781787f7aab6cdba0b738e4844a26aab5d8e.zip
Delete old-ui folder
Diffstat (limited to 'old-ui/app/settings.js')
-rw-r--r--old-ui/app/settings.js59
1 files changed, 0 insertions, 59 deletions
diff --git a/old-ui/app/settings.js b/old-ui/app/settings.js
deleted file mode 100644
index 8df37c555..000000000
--- a/old-ui/app/settings.js
+++ /dev/null
@@ -1,59 +0,0 @@
-const inherits = require('util').inherits
-const Component = require('react').Component
-const h = require('react-hyperscript')
-const connect = require('react-redux').connect
-const actions = require('../../ui/app/actions')
-
-module.exports = connect(mapStateToProps)(AppSettingsPage)
-
-function mapStateToProps (state) {
- return {}
-}
-
-inherits(AppSettingsPage, Component)
-function AppSettingsPage () {
- Component.call(this)
-}
-
-AppSettingsPage.prototype.render = function () {
- return (
-
- h('.account-detail-section.flex-column.flex-grow', [
-
- // subtitle and nav
- h('.flex-row.flex-center', [
- h('i.fa.fa-arrow-left.fa-lg.cursor-pointer', {
- onClick: this.navigateToAccounts.bind(this),
- }),
- h('h2.page-subtitle', 'Settings'),
- ]),
-
- h('label', {
- htmlFor: 'settings-rpc-endpoint',
- }, 'RPC Endpoint:'),
- h('input', {
- type: 'url',
- id: 'settings-rpc-endpoint',
- onKeyPress: this.onKeyPress.bind(this),
- }),
-
- ])
-
- )
-}
-
-AppSettingsPage.prototype.componentDidMount = function () {
- document.querySelector('input').focus()
-}
-
-AppSettingsPage.prototype.onKeyPress = function (event) {
- // get submit event
- if (event.key === 'Enter') {
- // this.submitPassword(event)
- }
-}
-
-AppSettingsPage.prototype.navigateToAccounts = function (event) {
- event.stopPropagation()
- this.props.dispatch(actions.showAccountsPage())
-}