OLD | NEW |
(Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-resizable-behavior
/iron-resizable-behavior.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable-behavior.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 6 |
| 7 <dom-module id="settings-subpage"> |
| 8 <link rel="import" type="css" href="settings_subpage.css"> |
| 9 <template> |
| 10 <div id="subheader"> |
| 11 <paper-icon-button icon="arrow-back" on-tap="onTapBack_"> |
| 12 </paper-icon-button> |
| 13 <h2>[[pageTitle]]</h2> |
| 14 </div> |
| 15 <content></content> |
| 16 </template> |
| 17 <script src="settings_subpage.js"></script> |
| 18 </dom-module> |
OLD | NEW |