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

Unified 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: Remove the demo structure from cr_elements_resources.grdp" 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 side-by-side diff with in-line comments
Download patch
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..18b235ffa18c679e815cd4c1aa52a23f0d2cc511
--- /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">
+ <link rel="import" type="css" href="cr_checkbox.css">
+ <template>
+ <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>

Powered by Google App Engine
This is Rietveld 408576698