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

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

Issue 1105743003: Add a 0.8 version of cr-checkbox with a demo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@polymer08
Patch Set: Rebase correctly. Created 5 years, 8 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" 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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698