OLD | NEW |
---|---|
(Empty) | |
1 <link rel="import" href="chrome://resources/html/polymer_config.html"> | |
2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | |
3 | |
4 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-card/paper-card.h tml"> | |
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/typography .html"> | |
7 | |
8 <link rel="import" href="chrome://md-policy/strings.html"> | |
9 | |
10 <dom-module id="policy-group"> | |
11 <link rel="import" type="css" href="chrome://md-policy/policy_group.css"> | |
12 <template> | |
13 <paper-card heading="[[translatedRiskTag]]" | |
14 aria-label="[[translatedRiskTag]]"> | |
15 <div class="card-content"> | |
16 <div id="content"> | |
17 <template is="dom-repeat" items="[[policies_]]" as="policy"> | |
Dan Beam
2015/11/03 18:22:31
should this be an iron-list? is the size of polic
fhorschig
2015/11/22 17:55:27
The iron-list usually has the advantage of renderi
| |
18 <p>[[policy.key]]</p> | |
19 </template> | |
20 </div> | |
21 </div> | |
22 </paper-card> | |
23 </template> | |
24 <script src="chrome://md-policy/policy_group.js"></script> | |
25 </dom-module> | |
OLD | NEW |