OLD | NEW |
---|---|
(Empty) | |
1 <link rel="import" href="chrome://resources/polymer/v0_8/polymer/polymer.html"> | |
2 <link rel="import" href="chrome://resources/polymer/v0_8/paper-checkbox/paper-ch eckbox.html"> | |
3 | |
4 <dom-module id="cr-checkbox"> | |
5 <template> | |
6 <link rel="import" type="css" href="cr_checkbox.css"> | |
michaelpg
2015/04/27 05:11:01
This should be outside the <template>, does it wor
Jeremy Klein
2015/04/28 00:11:58
Good catch. It does seem to work this way for some
| |
7 <cr-events id="events"></cr-events> | |
8 <paper-checkbox id="checkbox" checked="{{checked}}" disabled="{{disabled}}"> | |
9 <content></content> | |
10 </paper-checkbox> | |
11 </template> | |
12 <script src="cr_checkbox.js"></script> | |
13 </dom-module> | |
OLD | NEW |