Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(659)

Side by Side Diff: chrome/browser/resources/md_feedback/feedback_container.html

Issue 2039593002: [Md Feedback] Add initial content/strings to feedback-container element. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes per dbeam@'s comments. Rebase. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698