OLD | NEW |
---|---|
(Empty) | |
1 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> | |
2 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | |
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma terial.html"> | |
4 | |
5 <dom-module id="cr-settings-section"> | |
6 <link rel="import" type="css" href="settings_section.css"> | |
7 <template> | |
8 <paper-material> | |
9 <div header> | |
10 <iron-icon icon="[[icon]]"></iron-icon> | |
11 <div class="title">[[pageTitle]]</div> | |
michaelpg
2015/07/21 22:04:01
wat
tommycli
2015/07/22 19:06:42
Done.
| |
12 </div> | |
13 <div class="content"> | |
14 <content></content> | |
15 </div> | |
16 </paper-material> | |
17 </template> | |
18 <script src="settings_section.js"></script> | |
19 </dom-module> | |
OLD | NEW |