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"> | |
| 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="button" | |
|
michaelpg
2015/02/11 02:08:10
label="{{ label }}"
Oren Blasberg
2015/02/11 20:12:42
Done.
michaelpg
2015/02/18 00:11:16
Sorry, I've realized this is just a convention fro
Oren Blasberg
2015/02/18 00:17:01
Done.
| |
| 11 checked?="{{ checked }}" disabled?="{{ disabled }}"> | |
| 12 </paper-checkbox> | |
| 13 </template> | |
| 14 <script src="cr_checkbox.js"></script> | |
| 15 </polymer-element> | |
| OLD | NEW |