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

Side by Side Diff: appengine/config_service/ui/src/config-ui/config-set-card.html

Issue 2936423002: config_service: add routing for config-set page. (Closed)
Patch Set: Remove UI handler. Created 3 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
1 <!-- 1 <!--
2 Copyright 2017 The LUCI Authors. All rights reserved. 2 Copyright 2017 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 <link rel="import" href="../../bower_components/paper-item/paper-item.html"> 7 <link rel="import" href="../../bower_components/paper-item/paper-item.html">
8 <link rel="import" href="../../bower_components/polymer/polymer.html"> 8 <link rel="import" href="../../bower_components/polymer/polymer.html">
9 9
10 <dom-module id="config-card"> 10 <dom-module id="config-set-card">
11 <template> 11 <template>
12 <style> 12 <style>
13 .center { 13 .center {
14 margin: auto; 14 margin: auto;
15 width: 25%; 15 width: 25%;
16 border-style: solid; 16 border-style: solid;
17 border-width: 2px; 17 border-width: 2px;
18 } 18 }
19 </style> 19 </style>
20 20
21 <paper-item class="center"> 21 <paper-item class="center" id="paper-box">
22 <!-- TODO(cwpayton): Add launch icon next to the name of the config 22 <!-- TODO(cwpayton): Add launch icon next to the name of the config
23 so that upon clicking the icon, the user will be taken to the config 23 so that upon clicking the icon, the user will be taken to the config
24 set page. --> 24 set page. -->
25 [[name]] 25 [[name]]
26 </paper-item> 26 </paper-item>
27 </template> 27 </template>
28 <script> 28 <script>
29 Polymer({ 29 Polymer({
30 is: "config-card", 30 is: "config-set-card",
31 31
32 properties: { 32 properties: {
33 name: { 33 name: {
34 type: String 34 type: String
35 } 35 }
36 } 36 }
37
37 }); 38 });
38 </script> 39 </script>
39 </dom-module> 40 </dom-module>
41
OLDNEW
« no previous file with comments | « appengine/config_service/ui/src/config-ui/config-card.html ('k') | appengine/config_service/ui/src/config-ui/config-ui.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698