| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2016 The LUCI Authors. All rights reserved. | 2 Copyright 2016 The LUCI Authors. All rights reserved. |
| 3 Use of this source code is governed under the Apache License, Version 2.0 | 3 Use of this source code is governed under the Apache License, Version 2.0 |
| 4 that can be found in the LICENSE file. | 4 that can be found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <!doctype html> | 7 <!doctype html> |
| 8 <meta charset="UTF-8"> | 8 <meta charset="UTF-8"> |
| 9 <title>RPC Explorer</title> | 9 <title>RPC Explorer</title> |
| 10 <script type="text/javascript" | 10 <script type="text/javascript" |
| 11 src="/static/common/bower_components/webcomponentsjs/webcomponents-lite.js"> | 11 src="/static/common/bower_components/webcomponentsjs/webcomponents-lite.js"> |
| 12 </script> | 12 </script> |
| 13 <link rel="stylesheet" | 13 <link rel="stylesheet" |
| 14 href="/static/common/bower_components/bootstrap/css/bootstrap.min.css"> | 14 href="/static/common/bower_components/bootstrap/css/bootstrap.min.css"> |
| 15 <link rel="import" href="/static/common/rpcexplorer/rpc-explorer.html"> | 15 <link rel="import" href="/static/common/rpcexplorer/rpc-explorer.html"> |
| 16 <style> | 16 <style> |
| 17 .ace_editor.ace_autocomplete { | 17 .ace_editor.ace_autocomplete { |
| 18 width: 500px !important; | 18 width: 500px !important; |
| 19 } | 19 } |
| 20 body { | 20 body { |
| 21 margin-top: 5px; | 21 margin-top: 5px; |
| 22 } | 22 } |
| 23 </style> | 23 </style> |
| 24 | 24 |
| 25 <div class="container"> | 25 <div class="container"> |
| 26 <rpc-explorer | 26 <rpc-explorer |
| 27 root-path="/rpcexplorer" | 27 explorer-root-path="/rpcexplorer" |
| 28 client-id="446450136466-e77v49thuh5dculh78gumq3oncqe28m3.apps.googleuserco
ntent.com" | 28 client-id="446450136466-e77v49thuh5dculh78gumq3oncqe28m3.apps.googleuserco
ntent.com" |
| 29 ></rpc-explorer> | 29 ></rpc-explorer> |
| 30 </div> | 30 </div> |
| OLD | NEW |