aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/components/proxyapp.jsx.js
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-09-18 23:47:54 +0200
committerMaximilian Hils <git@maximilianhils.com>2014-09-18 23:47:54 +0200
commit390a435ac4b5ce78b1aa32b4b048318c5ef0ba03 (patch)
tree10a8cf4fb5ae056ebe0ad37d1ceb29f91d5d0b94 /web/src/js/components/proxyapp.jsx.js
parente66f240e8148fd63e6739950bd773b4052d91501 (diff)
downloadmitmproxy-390a435ac4b5ce78b1aa32b4b048318c5ef0ba03.tar.gz
mitmproxy-390a435ac4b5ce78b1aa32b4b048318c5ef0ba03.tar.bz2
mitmproxy-390a435ac4b5ce78b1aa32b4b048318c5ef0ba03.zip
basic splitter -> kick-ass splitter
Diffstat (limited to 'web/src/js/components/proxyapp.jsx.js')
-rw-r--r--web/src/js/components/proxyapp.jsx.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/web/src/js/components/proxyapp.jsx.js b/web/src/js/components/proxyapp.jsx.js
index b45ec911..ff6e8da1 100644
--- a/web/src/js/components/proxyapp.jsx.js
+++ b/web/src/js/components/proxyapp.jsx.js
@@ -19,7 +19,6 @@ var ProxyAppMain = React.createClass({
SettingsStore.removeListener("change", this.onSettingsChange);
},
onSettingsChange: function () {
- console.log("onSettingsChange");
this.setState({settings: SettingsStore.getAll()});
},
render: function () {
@@ -27,7 +26,7 @@ var ProxyAppMain = React.createClass({
<div id="container">
<Header settings={this.state.settings}/>
<this.props.activeRouteHandler settings={this.state.settings}/>
- <Splitter axis="y"/>
+ {this.state.settings.showEventLog ? <Splitter axis="y"/> : null}
{this.state.settings.showEventLog ? <EventLog/> : null}
<Footer settings={this.state.settings}/>
</div>