Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | |
| 2 | |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-card/paper-card.h tml"> | |
| 4 | |
| 5 <link rel="import" href="chrome://md-policy/policy_group.html"> | |
| 6 | |
| 7 <dom-module id="policy-ui"> | |
| 8 <link rel="import" type="css" href="chrome://md-policy/policy_ui.css"> | |
| 9 <template> | |
| 10 <!--TODO(fhorschig): Remove mock and use reviewed i18n strings! --> | |
| 11 <paper-card id="introduction" | |
| 12 heading="[[introduction.title]]" | |
| 13 aria-label="[[introduction.title]]"> | |
|
stevenjb
2015/10/07 17:09:32
Fix indent. (4 spaces from tag)
fhorschig
2015/10/08 09:35:45
Done.
| |
| 14 <div class="card-content">[[introduction.text]]</div> | |
| 15 </paper-card> | |
| 16 <!-- end of ToDo --> | |
| 17 <div id="groups"> | |
| 18 </div> | |
| 19 </template> | |
| 20 <script src="policy_ui.js"></script> | |
| 21 </dom-module> | |
| OLD | NEW |