diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-06-03 18:35:27 -0700 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-06-03 18:38:25 -0700 |
commit | ff9cc8b28393f6beba1ed42ade074672183313e9 (patch) | |
tree | f2fbb0d6193897be15e98a9bdbbbbe1a8af41dea /web/src/js/components | |
parent | d6fcd7e06d24ce75a17b82290ce54a802bc5e868 (diff) | |
download | mitmproxy-ff9cc8b28393f6beba1ed42ade074672183313e9.tar.gz mitmproxy-ff9cc8b28393f6beba1ed42ade074672183313e9.tar.bz2 mitmproxy-ff9cc8b28393f6beba1ed42ade074672183313e9.zip |
web: remove old event log store
Diffstat (limited to 'web/src/js/components')
-rw-r--r-- | web/src/js/components/proxyapp.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/web/src/js/components/proxyapp.js b/web/src/js/components/proxyapp.js index 99b64580..9e4bd0a4 100644 --- a/web/src/js/components/proxyapp.js +++ b/web/src/js/components/proxyapp.js @@ -9,7 +9,7 @@ import MainView from "./mainview.js"; import Footer from "./footer.js"; import {Header, MainMenu} from "./header.js"; import EventLog from "./eventlog.js" -import {EventLogStore, FlowStore, SettingsStore} from "../store/store.js"; +import {FlowStore, SettingsStore} from "../store/store.js"; import {Key} from "../utils.js"; @@ -24,7 +24,6 @@ var Reports = React.createClass({ var ProxyAppMain = React.createClass({ childContextTypes: { flowStore: React.PropTypes.object.isRequired, - eventStore: React.PropTypes.object.isRequired, returnFocus: React.PropTypes.func.isRequired, location: React.PropTypes.object.isRequired, }, @@ -63,13 +62,11 @@ var ProxyAppMain = React.createClass({ getChildContext: function () { return { flowStore: this.state.flowStore, - eventStore: this.state.eventStore, returnFocus: this.focus, location: this.props.location }; }, getInitialState: function () { - var eventStore = new EventLogStore(); var flowStore = new FlowStore(); var settingsStore = new SettingsStore(); @@ -79,7 +76,6 @@ var ProxyAppMain = React.createClass({ return { settings: settingsStore.dict, flowStore: flowStore, - eventStore: eventStore }; }, focus: function () { |