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

Unified Diff: chrome/browser/resources/options/chromeos/keyboard_overlay.js

Issue 11418256: Add the link to "languages and input settings" into Keyboard settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix fypo Created 8 years 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/options/chromeos/keyboard_overlay.js
diff --git a/chrome/browser/resources/options/chromeos/keyboard_overlay.js b/chrome/browser/resources/options/chromeos/keyboard_overlay.js
index 98fa0997ec7d03b4f4528422bbe32c76c5481f99..67fe4d7ced945e97014428eebe557e2701dd4559 100644
--- a/chrome/browser/resources/options/chromeos/keyboard_overlay.js
+++ b/chrome/browser/resources/options/chromeos/keyboard_overlay.js
@@ -21,6 +21,17 @@ cr.define('options', function() {
__proto__: options.SettingsDialog.prototype,
/**
+ * Initializes the page. This method is called in initialize.
+ */
+ initializePage: function() {
+ options.SettingsDialog.prototype.initializePage.call(this);
+
+ $('languages-and-input-settings').onclick = function(e) {
+ OptionsPage.navigateToPage('languages');
+ };
+ },
+
+ /**
* Show/hide the caps lock remapping section.
* @private
*/

Powered by Google App Engine
This is Rietveld 408576698