Chromium Code Reviews| Index: ui/webui/resources/cr_elements/v0_8/cr_checkbox/cr_checkbox.html |
| diff --git a/ui/webui/resources/cr_elements/v0_8/cr_checkbox/cr_checkbox.html b/ui/webui/resources/cr_elements/v0_8/cr_checkbox/cr_checkbox.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..eebfde0e33568dd021515bee5d1f90b5830ffb07 |
| --- /dev/null |
| +++ b/ui/webui/resources/cr_elements/v0_8/cr_checkbox/cr_checkbox.html |
| @@ -0,0 +1,13 @@ |
| +<link rel="import" href="chrome://resources/polymer/v0_8/polymer/polymer.html"> |
| +<link rel="import" href="chrome://resources/polymer/v0_8/paper-checkbox/paper-checkbox.html"> |
| + |
| +<dom-module id="cr-checkbox"> |
| + <template> |
| + <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
|
| + <cr-events id="events"></cr-events> |
| + <paper-checkbox id="checkbox" checked="{{checked}}" disabled="{{disabled}}"> |
| + <content></content> |
| + </paper-checkbox> |
| + </template> |
| + <script src="cr_checkbox.js"></script> |
| +</dom-module> |