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

Unified Diff: chrome/browser/resources/options/chromeos_language_options.js

Issue 3193001: Fix "Languages and Input" options. (Closed)
Patch Set: Created 10 years, 4 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
« no previous file with comments | « chrome/browser/resources/options/chromeos_language_list.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/chromeos_language_options.js
diff --git a/chrome/browser/resources/options/chromeos_language_options.js b/chrome/browser/resources/options/chromeos_language_options.js
index fca8ed254b74369776b95d714bc899756a08f0e5..a8033287069e8b1108359c7b032a87516ca946a3 100644
--- a/chrome/browser/resources/options/chromeos_language_options.js
+++ b/chrome/browser/resources/options/chromeos_language_options.js
@@ -357,7 +357,8 @@ cr.define('options', function() {
* @private
*/
handlePreloadEnginesPrefChange_: function(e) {
- this.preloadEngines_ = this.filterBadPreloadEngines_(e.value.split(','));
+ var value = e.value.value;
+ this.preloadEngines_ = this.filterBadPreloadEngines_(value.split(','));
this.updateCheckboxesFromPreloadEngines_();
},
« no previous file with comments | « chrome/browser/resources/options/chromeos_language_list.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698