Chromium Code Reviews| Index: chrome/browser/resources/options/browser_options.js |
| diff --git a/chrome/browser/resources/options/browser_options.js b/chrome/browser/resources/options/browser_options.js |
| index c5347ef445cd9df59bfccc8e4e9445a5a8e30f38..bffaeb32f2531b72f827f0e2b6e29946548f350b 100644 |
| --- a/chrome/browser/resources/options/browser_options.js |
| +++ b/chrome/browser/resources/options/browser_options.js |
| @@ -2324,10 +2324,10 @@ cr.define('options', function() { |
| }; |
| /** |
| - * Hides Android Apps settings when they are not available (ChromeOS only). |
| + * Hides Android Apps settings when they are not available. (ChromeOS only). |
|
bartfab (slow)
2016/03/02 14:45:40
Nit, while you are here: s/ChromeOS/Chrome OS/
Polina Bondarenko
2016/03/06 20:22:33
Done.
|
| */ |
| BrowserOptions.hideAndroidAppsSection = function() { |
| - var section = $('andorid-apps-section'); |
| + var section = $('android-apps-section'); |
| if (section) |
| section.hidden = true; |
| }; |