| 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
|
| */
|
|
|