Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | |
|
Dan Beam
2016/06/09 19:03:39
do you still need this?
apacible
2016/06/09 21:01:35
Done.
| |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> | |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-texta rea.html"> | |
| 6 <dom-module name="feedback-container"> | |
| 7 <link rel="import" type="css" href="feedback_container.css"> | |
| 8 <template> | |
| 9 <div id="header"> | |
| 10 <span>$i18n{headingText}</span> | |
| 11 </div> | |
| 12 <div> | |
| 13 <paper-textarea label="$i18n{openEndedLabel}"> | |
| 14 </paper-textarea> | |
|
Dan Beam
2016/06/09 19:03:39
this probably fits in one line now?
apacible
2016/06/09 21:01:35
Done.
| |
| 15 <paper-input label="$i18n{urlLabel}"></paper-input> | |
| 16 <paper-input label="$i18n{emailLabel}"></paper-input> | |
| 17 </div> | |
| 18 <div> | |
| 19 <paper-button> | |
| 20 <span>$i18n{cancelButton}</span> | |
| 21 </paper-button> | |
| 22 <paper-button id="submit-button"> | |
| 23 <span>$i18n{sendReportButton}</span> | |
| 24 </paper-button> | |
| 25 </div> | |
| 26 </template> | |
| 27 <script src="feedback_container.js"></script> | |
|
Dan Beam
2016/06/09 19:03:39
nit: indent 2 more spaces
apacible
2016/06/09 21:01:35
Done.
| |
| 28 </dom-module> | |
| OLD | NEW |