| OLD | NEW |
| (Empty) | |
| 1 <!-- |
| 2 Copyright 2016 The LUCI Authors. All rights reserved. |
| 3 Use of this source code is governed under the Apache License, Version 2.0 |
| 4 that can be found in the LICENSE file. |
| 5 --> |
| 6 |
| 7 <!doctype html> |
| 8 <html> |
| 9 <head> |
| 10 <meta charset="UTF-8"> |
| 11 <title>RPC Explorer</title> |
| 12 <script type="text/javascript" |
| 13 src="/rpcexplorer/inc/bower_components/webcomponentsjs/webcomponents-lite.
js"> |
| 14 </script> |
| 15 |
| 16 <!-- Because this project uses vulcanize this should be your only html import |
| 17 in this file. All other imports should go in elements.html --> |
| 18 <link rel="import" href="/rpcexplorer/elements/elements.html"> |
| 19 |
| 20 <link rel="stylesheet" href="/rpcexplorer/inc/bower_components/bootstrap/dist/
css/bootstrap.min.css"> |
| 21 |
| 22 <style> |
| 23 .ace_editor.ace_autocomplete { |
| 24 width: 500px !important; |
| 25 } |
| 26 body { |
| 27 margin-top: 5px; |
| 28 } |
| 29 </style> |
| 30 </head> |
| 31 <body unresolved> |
| 32 <div class="container"> |
| 33 <rpc-explorer |
| 34 root-path="/rpcexplorer" |
| 35 client-id="446450136466-e77v49thuh5dculh78gumq3oncqe28m3.apps.googleuser
content.com"> |
| 36 </rpc-explorer> |
| 37 </div> |
| 38 </body> |
| OLD | NEW |