Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Side by Side Diff: web/apps/rpcexplorer/index.html

Issue 1960443004: Add rpcexplorer to webapp hierarchy. (Closed) Base URL: https://github.com/luci/luci-go@logdog-project-web
Patch Set: Updated license, clarified instructions. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698