Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> | |
| 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 class="header"> | |
| 10 <iron-icon icon="{{icon}}"></iron-icon> | |
| 11 <div class="title">{{pageTitle}}</div> | |
|
Dan Beam
2015/07/22 23:12:17
if this makes someone happy I suppose that's OK an
tommycli
2015/07/22 23:54:38
Acknowledged.
| |
| 12 </div> | |
| 13 <div class="content-container"> | |
| 14 <content id="content"></content> | |
| 15 </div> | |
| 16 </paper-material> | |
| 17 </template> | |
| 18 <script src="settings_section.js"></script> | |
| 19 </dom-module> | |
| OLD | NEW |