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

Side by Side Diff: ui/webui/resources/cr_elements/cr_checkbox/cr_checkbox.html

Issue 909313003: Add cr-checkbox to Chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Respond to comments. Created 5 years, 10 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"
2 href="chrome://resources/polymer/paper-checkbox/paper-checkbox.html">
3 <link rel="import"
4 href="chrome://resources/cr_elements/cr_events/cr_events.html">
Dan Beam 2015/02/13 21:56:49 that's weird. why are we using _ when polymer use
Dan Beam 2015/02/13 21:56:49 chrome cr cr cr :(
michaelpg 2015/02/13 23:27:57 cf. paper-checkbox/paper-checkbox.html "cr_events
michaelpg 2015/02/13 23:27:57 yeah. We decided to be consistent with the rest of
Dan Beam 2015/02/19 22:47:56 that's repetitive. that's repetitive. it wastes s
michaelpg 2015/02/20 01:26:48 My editor cuts this down to 2s... but I acknowledg
5
6 <polymer-element name="cr-checkbox">
7 <template>
8 <link rel="stylesheet" href="cr_checkbox.css">
9 <cr-events id="events"></cr-events>
10 <paper-checkbox id="checkbox"
11 checked?="{{ checked }}" disabled?="{{ disabled }}" label="{{ label }}">
12 </paper-checkbox>
13 </template>
14 <script src="cr_checkbox.js"></script>
15 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698