mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-16 05:38:41 -09:00
Remove forgoten code (#3510)
This commit is contained in:
parent
90e8c1a766
commit
1127e8e7ae
3 changed files with 1 additions and 13 deletions
|
|
@ -86,7 +86,6 @@ class TermGroup_ extends React.PureComponent {
|
||||||
onResize: this.bind(this.props.onResize, null, uid),
|
onResize: this.bind(this.props.onResize, null, uid),
|
||||||
onTitle: this.bind(this.props.onTitle, null, uid),
|
onTitle: this.bind(this.props.onTitle, null, uid),
|
||||||
onData: this.bind(this.props.onData, null, uid),
|
onData: this.bind(this.props.onData, null, uid),
|
||||||
onURLAbort: this.bind(this.props.onURLAbort, null, uid),
|
|
||||||
onContextMenu: this.bind(this.props.onContextMenu, null, uid),
|
onContextMenu: this.bind(this.props.onContextMenu, null, uid),
|
||||||
borderColor: this.props.borderColor,
|
borderColor: this.props.borderColor,
|
||||||
selectionColor: this.props.selectionColor,
|
selectionColor: this.props.selectionColor,
|
||||||
|
|
|
||||||
|
|
@ -120,7 +120,6 @@ export default class Terms extends React.Component {
|
||||||
onResize: this.props.onResize,
|
onResize: this.props.onResize,
|
||||||
onTitle: this.props.onTitle,
|
onTitle: this.props.onTitle,
|
||||||
onData: this.props.onData,
|
onData: this.props.onData,
|
||||||
onURLAbort: this.props.onURLAbort,
|
|
||||||
onContextMenu: this.props.onContextMenu,
|
onContextMenu: this.props.onContextMenu,
|
||||||
quickEdit: this.props.quickEdit,
|
quickEdit: this.props.quickEdit,
|
||||||
webGLRenderer: this.props.webGLRenderer,
|
webGLRenderer: this.props.webGLRenderer,
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,6 @@
|
||||||
import Terms from '../components/terms';
|
import Terms from '../components/terms';
|
||||||
import {connect} from '../utils/plugins';
|
import {connect} from '../utils/plugins';
|
||||||
import {
|
import {resizeSession, sendSessionData, setSessionXtermTitle, setActiveSession} from '../actions/sessions';
|
||||||
resizeSession,
|
|
||||||
sendSessionData,
|
|
||||||
exitSessionBrowser,
|
|
||||||
setSessionXtermTitle,
|
|
||||||
setActiveSession
|
|
||||||
} from '../actions/sessions';
|
|
||||||
import {openContextMenu} from '../actions/ui';
|
import {openContextMenu} from '../actions/ui';
|
||||||
import getRootGroups from '../selectors';
|
import getRootGroups from '../selectors';
|
||||||
|
|
||||||
|
|
@ -64,10 +58,6 @@ const TermsContainer = connect(
|
||||||
dispatch(resizeSession(uid, cols, rows));
|
dispatch(resizeSession(uid, cols, rows));
|
||||||
},
|
},
|
||||||
|
|
||||||
onURLAbort(uid) {
|
|
||||||
dispatch(exitSessionBrowser(uid));
|
|
||||||
},
|
|
||||||
|
|
||||||
onActive(uid) {
|
onActive(uid) {
|
||||||
dispatch(setActiveSession(uid));
|
dispatch(setActiveSession(uid));
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue