diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-09-18 23:22:02 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-09-18 23:22:02 +0200 |
commit | e66f240e8148fd63e6739950bd773b4052d91501 (patch) | |
tree | 539b1a500948c6e9ba209e15e284da5b3dac21a8 /web/src/js/components/proxyapp.jsx.js | |
parent | d1ba150ea79689a55898efa760f7d77ca5ed601c (diff) | |
download | mitmproxy-e66f240e8148fd63e6739950bd773b4052d91501.tar.gz mitmproxy-e66f240e8148fd63e6739950bd773b4052d91501.tar.bz2 mitmproxy-e66f240e8148fd63e6739950bd773b4052d91501.zip |
add splitter
Diffstat (limited to 'web/src/js/components/proxyapp.jsx.js')
-rw-r--r-- | web/src/js/components/proxyapp.jsx.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web/src/js/components/proxyapp.jsx.js b/web/src/js/components/proxyapp.jsx.js index 6895b852..b45ec911 100644 --- a/web/src/js/components/proxyapp.jsx.js +++ b/web/src/js/components/proxyapp.jsx.js @@ -27,6 +27,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 ? <EventLog/> : null} <Footer settings={this.state.settings}/> </div> @@ -48,6 +49,7 @@ var ProxyApp = ( <Route name="flows" path="flows" handler={MainView}/> <Route name="flow" path="flows/:flowId/:detailTab" handler={MainView}/> <Route name="reports" handler={Reports}/> + <Redirect path="/" to="flows" /> </Route> </Routes> );
\ No newline at end of file |