Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 | |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | |
| 3 | |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-card/paper-card.h tml"> | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/typography .html"> | |
| 6 | |
| 7 <dom-module id="policy-group"> | |
| 8 <link rel="import" type="css" href="chrome://md-policy/policy_group.css"> | |
| 9 <template> | |
| 10 <paper-card heading="[[riskTag]]" aria-label="[[riskTag]]"> | |
| 11 <div id="content" class="card-content"></div> | |
|
stevenjb
2015/10/07 17:09:32
Is class needed here?
fhorschig
2015/10/08 09:35:45
It is. Otherwise, the paper-card won't recognize t
stevenjb
2015/10/08 17:12:39
Oh, I see, that's a Polymer class. Got it.
| |
| 12 </paper-card> | |
| 13 </template> | |
| 14 <script src="chrome://md-policy/policy_group.js"></script> | |
| 15 </dom-module> | |
| OLD | NEW |