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

Unified Diff: ui/webui/resources/cr_elements/cr_checkbox/cr_checkbox.html

Issue 948283004: Fix the binding of the checked and disabled properties of cr-checkbox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Also fix the toggle button. Created 5 years, 10 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/cr_checkbox/cr_checkbox.html
diff --git a/ui/webui/resources/cr_elements/cr_checkbox/cr_checkbox.html b/ui/webui/resources/cr_elements/cr_checkbox/cr_checkbox.html
index 20ad7c28e08168dd89f7ed9eb614e947d9e86680..3bf47fd41c8783584e742289fb08286a450d42b0 100644
--- a/ui/webui/resources/cr_elements/cr_checkbox/cr_checkbox.html
+++ b/ui/webui/resources/cr_elements/cr_checkbox/cr_checkbox.html
@@ -8,7 +8,7 @@
<link rel="stylesheet" href="cr_checkbox.css">
<cr-events id="events"></cr-events>
<paper-checkbox id="checkbox"
- checked?="{{checked}}" disabled?="{{disabled}}" label="{{label}}">
michaelpg 2015/02/25 19:03:36 Hmm, this seems to work for me. What are you seein
+ checked="{{checked}}" disabled="{{disabled}}" label="{{label}}">
</paper-checkbox>
</template>
<script src="cr_checkbox.js"></script>

Powered by Google App Engine
This is Rietveld 408576698