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') 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()) } namon'>cinnamon FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/xen-tools
Commit message (Expand)AuthorAgeFilesLines
* Bump PORTREVISIONs of all users of math/mpc that we just updated toGerald Pfeifer2018-03-111-1/+1
* - Fix shebangsDmitry Marakasov2018-02-061-3/+7
* - Those ports fail to build with python3Antoine Brodin2017-12-121-1/+1
* Fix whitespace issues (mixed tab/spaces, alignment) in a few ports.Jimmy Olgeni2017-11-031-1/+1
* xen-tools: fix ASL QEMU codeRoger Pau Monné2017-06-192-1/+27
* xen: apply XSA-206Roger Pau Monné2017-03-293-2/+573
* xen: update to 4.7.2Roger Pau Monné2017-03-209-314/+302
* xen: fix build after XSA-209Roger Pau Monné2017-02-232-1/+73
* xen: XSA-209Roger Pau Monné2017-02-212-1/+58
* xen: fix build failure after XSA-208Roger Pau Monné2017-02-142-17/+25
* xen: apply XSA-209Roger Pau Monné2017-02-102-1/+46
* Fixup EXTRA_PATCHES and PATCHFILES missing the :-pX argument.Mathieu Arnold2017-01-171-3/+3
* Remove BROKEN_FreeBSD_9Sunpoet Po-Chuan Hsieh2017-01-011-1/+0
* xen-tools: fix path of xenstore deviceRoger Pau Monné2016-12-162-2/+35
* xen: update to 4.7.1Roger Pau Monné2016-12-03