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

Unified Diff: appengine/isolate/ui/res/imp/index/isolate-index.html

Issue 2991153002: Add stub for new polymer-based Isolate UI (Closed)
Patch Set: Address feedback Created 3 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/isolate/ui/package.json ('k') | appengine/isolate/ui/res/imp/index/isolate-index-demo.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/isolate/ui/res/imp/index/isolate-index.html
diff --git a/appengine/isolate/ui/res/imp/index/isolate-index.html b/appengine/isolate/ui/res/imp/index/isolate-index.html
new file mode 100644
index 0000000000000000000000000000000000000000..8208d7eb7118f2f1150eb61ecc0024b7a4cd22dc
--- /dev/null
+++ b/appengine/isolate/ui/res/imp/index/isolate-index.html
@@ -0,0 +1,56 @@
+<!--
+ Copyright 2017 The LUCI Authors. All rights reserved.
+ Use of this source code is governed under the Apache License, Version 2.0
+ that can be found in the LICENSE file.
+
+ This in an HTML Import-able file that contains the definition
+ of the following elements:
+
+ <isolate-index>
+
+ Isolate Index is the landing page for the Isolate UI.
+ It will have links to all other pages and a high-level overview of the fleet.
+
+ Usage:
+
+ <isolate-index></isolate-index>
+
+ This is a top-level element.
+
+ Properties:
+ client_id: String, Oauth 2.0 client id. It will be set by server-side
+ template evaluation.
+
+ Methods:
+ None.
+
+ Events:
+ None.
+-->
+
+<dom-module id="isolate-index">
+ <template>
+ <style>
+ h1 {
+ color:purple;
+ }
+ </style>
+
+ <h1>Hello World</h1>
+
+ <div>{{client_id}}</div>
+
+ </template>
+ <script>
+ Polymer({
+ is: 'isolate-index',
+
+ properties: {
+ client_id: {
+ type: String,
+ }
+ },
+
+ });
+ </script>
+</dom-module>
« no previous file with comments | « appengine/isolate/ui/package.json ('k') | appengine/isolate/ui/res/imp/index/isolate-index-demo.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698