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

Side by Side Diff: server/static/rpcexplorer/index.html

Issue 1695893004: RPC Explorer (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@rpcepxlorer-deps
Patch Set: Created 4 years, 10 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 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.
3 ~ // Use of this source code is governed by a BSD-style license that can be
4 ~ // found in the LICENSE file.
5 ~
6 -->
7
8 <!DOCTYPE html>
9 <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
10 <head>
11 <meta charset="UTF-8">
12 <title>RPC Explorer</title>
13 <script type="text/javascript"
14 src="/static/common/third_party/webcomponentsjs/webcomponents-lite.js">
15 </script>
16 <link rel="stylesheet"
17 href="/static/common/third_party/bootstrap/css/bootstrap.min.css">
18 <link rel="import" href="rpc-explorer.html">
19 <style>
20 .ace_editor.ace_autocomplete {
21 width: 500px !important;
22 }
23 </style>
24 </head>
25 <body>
26 <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
27 <rpc-explorer></rpc-explorer>
28 </div>
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698