| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @fileoverview | 6 * @fileoverview |
| 7 * 'settings-a11y-page' is the small section of advanced settings with | 7 * 'settings-a11y-page' is the small section of advanced settings with |
| 8 * a link to the web store accessibility page on most platforms, and | 8 * a link to the web store accessibility page on most platforms, and |
| 9 * a subpage with lots of other settings on Chrome OS. | 9 * a subpage with lots of other settings on Chrome OS. |
| 10 */ | 10 */ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 }, | 42 }, |
| 43 }, | 43 }, |
| 44 }, | 44 }, |
| 45 | 45 |
| 46 // <if expr="chromeos"> | 46 // <if expr="chromeos"> |
| 47 /** @private */ | 47 /** @private */ |
| 48 onManageAccessibilityFeaturesTap_: function() { | 48 onManageAccessibilityFeaturesTap_: function() { |
| 49 settings.navigateTo(settings.Route.MANAGE_ACCESSIBILITY); | 49 settings.navigateTo(settings.Route.MANAGE_ACCESSIBILITY); |
| 50 }, | 50 }, |
| 51 // </if> | 51 // </if> |
| 52 | |
| 53 /** @private */ | |
| 54 onMoreFeaturesTap_: function() { | |
| 55 window.open( | |
| 56 'https://chrome.google.com/webstore/category/collection/accessibility'); | |
| 57 }, | |
| 58 }); | 52 }); |
| OLD | NEW |