Index: server/static/rpcexplorer/index.html |
diff --git a/server/static/rpcexplorer/index.html b/server/static/rpcexplorer/index.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e27f71eb6c1b1aacb959011c870d86691c9864e5 |
--- /dev/null |
+++ b/server/static/rpcexplorer/index.html |
@@ -0,0 +1,30 @@ |
+<!-- |
+ ~ // Copyright 2016 The Chromium Authors. All rights reserved. |
Bons
2016/02/13 17:18:21
why the mix of ~ and // ? you're already in an HTM
nodir
2016/02/17 02:02:12
Done.
|
+ ~ // Use of this source code is governed by a BSD-style license that can be |
+ ~ // found in the LICENSE file. |
+ ~ |
+ --> |
+ |
+<!DOCTYPE html> |
+<html lang="en"> |
Bons
2016/02/13 17:18:20
omit optional tags https://google.github.io/styleg
nodir
2016/02/17 02:02:12
nice! didn't know about that
|
+<head> |
+ <meta charset="UTF-8"> |
+ <title>RPC Explorer</title> |
+ <script type="text/javascript" |
+ src="/static/common/third_party/webcomponentsjs/webcomponents-lite.js"> |
+ </script> |
+ <link rel="stylesheet" |
+ href="/static/common/third_party/bootstrap/css/bootstrap.min.css"> |
+ <link rel="import" href="rpc-explorer.html"> |
+ <style> |
+ .ace_editor.ace_autocomplete { |
+ width: 500px !important; |
+ } |
+ </style> |
+</head> |
+<body> |
+ <div class="container"> |
Bons
2016/02/13 17:18:20
the container class is used by bootstrap i'm guess
nodir
2016/02/17 02:02:12
yes
|
+ <rpc-explorer></rpc-explorer> |
+ </div> |
+</body> |
+</html> |