Chromium Code Reviews| OLD | NEW |
|---|---|
| (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> | |
| OLD | NEW |