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

Unified Diff: appengine/config_service/ui/src/config-ui/config-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 side-by-side diff with in-line comments
Download patch
Index: appengine/config_service/ui/src/config-ui/config-card.html
diff --git a/appengine/config_service/ui/src/config-ui/config-card.html b/appengine/config_service/ui/src/config-ui/config-card.html
deleted file mode 100644
index 0f679c04b579693e8355ede3136ad5fc6c0b44c8..0000000000000000000000000000000000000000
--- a/appengine/config_service/ui/src/config-ui/config-card.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!--
- 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.
--->
-
-<link rel="import" href="../../bower_components/paper-item/paper-item.html">
-<link rel="import" href="../../bower_components/polymer/polymer.html">
-
-<dom-module id="config-card">
- <template>
- <style>
- .center {
- margin: auto;
- width: 25%;
- border-style: solid;
- border-width: 2px;
- }
- </style>
-
- <paper-item class="center">
- <!-- TODO(cwpayton): Add launch icon next to the name of the config
- so that upon clicking the icon, the user will be taken to the config
- set page. -->
- [[name]]
- </paper-item>
- </template>
- <script>
- Polymer({
- is: "config-card",
-
- properties: {
- name: {
- type: String
- }
- }
- });
- </script>
-</dom-module>
« no previous file with comments | « appengine/config_service/ui/index.html ('k') | appengine/config_service/ui/src/config-ui/config-set-card.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698