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"> | |
Dan Beam
2015/10/10 01:04:18
why \n's between imports?
fhorschig
2015/10/13 16:29:11
Reduced. The \n should separate different origins.
| |
6 | |
7 <dom-module id="policy-ui"> | |
8 <link rel="import" type="css" href="chrome://md-policy/policy_ui.css"> | |
9 <template> | |
10 <paper-card id="introduction" | |
11 heading="[[introduction.title]]" | |
12 aria-label="[[introduction.title]]"> | |
13 <div class="card-content">[[introduction.text]]</div> | |
14 </paper-card> | |
15 <div id="groups"> | |
16 </div> | |
Dan Beam
2015/10/10 01:04:18
<div id="groups"></div>
fhorschig
2015/10/13 16:29:11
Done.
| |
17 </template> | |
18 <script src="policy_ui.js"></script> | |
19 </dom-module> | |
OLD | NEW |