Chromium Code Reviews| Index: chrome/browser/resources/md_policy/policy_group.html |
| diff --git a/chrome/browser/resources/md_policy/policy_group.html b/chrome/browser/resources/md_policy/policy_group.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a4126aa56f34b8077903d7eb78989d2811efa12d |
| --- /dev/null |
| +++ b/chrome/browser/resources/md_policy/policy_group.html |
| @@ -0,0 +1,25 @@ |
| +<link rel="import" href="chrome://resources/html/polymer_config.html"> |
| +<link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| + |
| +<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| +<link rel="import" href="chrome://resources/polymer/v1_0/paper-card/paper-card.html"> |
| +<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/typography.html"> |
| + |
| +<link rel="import" href="chrome://md-policy/strings.html"> |
| + |
| +<dom-module id="policy-group"> |
| + <link rel="import" type="css" href="chrome://md-policy/policy_group.css"> |
| + <template> |
| + <paper-card heading="[[translatedRiskTag]]" |
| + aria-label="[[translatedRiskTag]]"> |
| + <div class="card-content"> |
| + <div id="content"> |
| + <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
|
| + <p>[[policy.key]]</p> |
| + </template> |
| + </div> |
| + </div> |
| + </paper-card> |
| + </template> |
| + <script src="chrome://md-policy/policy_group.js"></script> |
| +</dom-module> |