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

Unified Diff: ui/webui/resources/cr_elements/cr_toggle_button/cr_toggle_button.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_toggle_button/cr_toggle_button.html
diff --git a/ui/webui/resources/cr_elements/cr_toggle_button/cr_toggle_button.html b/ui/webui/resources/cr_elements/cr_toggle_button/cr_toggle_button.html
index db51e087c71d77cf5a5f63b895cab51d318326e7..4124320cf98bc7060f91d253289b244dc2aa3ffd 100644
--- a/ui/webui/resources/cr_elements/cr_toggle_button/cr_toggle_button.html
+++ b/ui/webui/resources/cr_elements/cr_toggle_button/cr_toggle_button.html
@@ -8,7 +8,7 @@
<link rel="stylesheet" href="cr_toggle_button.css">
<cr-events id="events"></cr-events>
<paper-toggle-button id="button"
- checked?="{{ checked }}" disabled?="{{ disabled }}">
+ checked="{{ checked }}" disabled="{{ disabled }}">
Kyle Horimoto 2015/02/25 18:51:19 nit: Let's get rid of the extra whitespace in the
Jeremy Klein 2015/02/25 20:00:41 Done.
</paper-toggle-button>
</template>
<script src="cr_toggle_button.js"></script>

Powered by Google App Engine
This is Rietveld 408576698