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

Unified Diff: chrome/browser/resources/settings/a11y_page/a11y_page.js

Issue 1132223005: Fix the pref binding by binding to the object rather than the element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fixes
Patch Set: revert accidental change Created 5 years, 7 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: chrome/browser/resources/settings/a11y_page/a11y_page.js
diff --git a/chrome/browser/resources/settings/a11y_page/a11y_page.js b/chrome/browser/resources/settings/a11y_page/a11y_page.js
index aa9f6b4ec0b5d59f1ca7842d52f1c66b580d3f2e..f3edf7d6bf057f574f80f389c212d10819f611ca 100644
--- a/chrome/browser/resources/settings/a11y_page/a11y_page.js
+++ b/chrome/browser/resources/settings/a11y_page/a11y_page.js
@@ -23,9 +23,6 @@ Polymer({
properties: {
/**
* Preferences state.
- *
- * @type {?CrSettingsPrefsElement}
- * @default null
*/
prefs: {
type: Object,
@@ -79,7 +76,7 @@ Polymer({
* @private
*/
autoclickSelectChanged_: function() {
- this.prefs.settings.settings.a11y.autoclick_delay_ms =
+ this.prefs.settings.a11y.autoclick_delay_ms =
michaelpg 2015/05/13 23:49:50 i know I saw this before, but I think you don't ne
Jeremy Klein 2015/05/14 00:53:52 Done.
this.$.autoclickDropdown.value;
},
});

Powered by Google App Engine
This is Rietveld 408576698