Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> | |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> | |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-texta rea.html"> | |
| 5 <dom-module name="feedback-container"> | |
| 6 <link rel="import" type="css" href="feedback_container.css"> | |
|
Dan Beam
2016/06/09 22:50:53
note: this syntax (link type=css) is deprecated.
apacible
2016/06/10 20:09:52
Noted.
| |
| 7 <template> | |
| 8 <div id="header"> | |
| 9 <span>$i18n{headingText}</span> | |
| 10 </div> | |
| 11 <div> | |
| 12 <paper-textarea label="$i18n{openEndedLabel}"></paper-textarea> | |
| 13 <paper-input label="$i18n{urlLabel}"></paper-input> | |
| 14 <paper-input label="$i18n{emailLabel}"></paper-input> | |
| 15 </div> | |
| 16 <div> | |
| 17 <paper-button> | |
| 18 <span>$i18n{cancelButton}</span> | |
|
Dan Beam
2016/06/09 22:50:53
why are you wrapping with a <span>?
apacible
2016/06/10 20:09:52
Removed.
| |
| 19 </paper-button> | |
| 20 <paper-button id="submit-button"> | |
| 21 <span>$i18n{sendReportButton}</span> | |
| 22 </paper-button> | |
| 23 </div> | |
| 24 </template> | |
| 25 <script src="feedback_container.js"></script> | |
| 26 </dom-module> | |
| OLD | NEW |