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

Side by Side Diff: chrome/browser/resources/md_policy/policy_ui.html

Issue 1371073003: Display material design policies grouped by tags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test corrections. Created 5 years, 1 month 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 <link rel="import" href="chrome://resources/html/cr.html">
2 <link rel="import" href="chrome://resources/html/polymer_config.html">
3 <link rel="import" href="chrome://resources/html/util.html">
4
5 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-card/paper-card.h tml">
7 <link rel="import" href="chrome://md-policy/policy_group.html">
8
9 <dom-module id="policy-ui">
10 <link rel="import" type="css" href="chrome://md-policy/policy_ui.css">
11 <template>
12 <paper-card id="introduction"
13 heading="[[introduction.title]]"
14 aria-label="[[introduction.title]]">
15 <div class="card-content">[[introduction.text]]</div>
16 </paper-card>
17 <div id="groups">
18 <template is="dom-repeat" items="[[tags_]]" as="tag">
19 <policy-group risk-tag="[[tag]]"></policy-group>
20 </template>
21 </div>
22 </template>
23
24 <script src="policy_ui.js"></script>
25 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698