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

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. 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/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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698