diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2014-12-30 21:51:07 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2014-12-30 21:51:07 +1300 |
commit | bc8687deb5f0f9273fc771e79b070f3b49e39fed (patch) | |
tree | 07e67eb7c9f732c0419e57b337c31d2372d12cff /web/src/index.html | |
parent | d2c7411f065435e2b2b62a70447cb01895fe69d1 (diff) | |
download | mitmproxy-bc8687deb5f0f9273fc771e79b070f3b49e39fed.tar.gz mitmproxy-bc8687deb5f0f9273fc771e79b070f3b49e39fed.tar.bz2 mitmproxy-bc8687deb5f0f9273fc771e79b070f3b49e39fed.zip |
Basic conversion: browserified web app now works.
Diffstat (limited to 'web/src/index.html')
-rw-r--r-- | web/src/index.html | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/web/src/index.html b/web/src/index.html index 571845b9..c40936e0 100644 --- a/web/src/index.html +++ b/web/src/index.html @@ -4,11 +4,10 @@ <meta charset="UTF-8"> <title>mitmproxy</title> <meta name="viewport" content="width=device-width, initial-scale=1"> - <link rel="stylesheet" href="/static/css/vendor.css"/> - <link rel="stylesheet" href="/static/css/app.css"/> - <script src="/static/js/vendor.js"></script> - <script src="/static/js/app.js"></script> + <link rel="stylesheet" href="/static/vendor.css"/> + <link rel="stylesheet" href="/static/app.css"/> + <script src="/static/vendor.js"></script> + <script src="/static/app.js"></script> </head> -<body> -</body> +<body> </body> </html>
\ No newline at end of file |