| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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-manage-a11y-page' is the subpage with the accessibility | 7 * 'settings-manage-a11y-page' is the subpage with the accessibility |
| 8 * settings. | 8 * settings. |
| 9 */ | 9 */ |
| 10 Polymer({ | 10 Polymer({ |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 settings.Route.KEYBOARD, | 94 settings.Route.KEYBOARD, |
| 95 /* dynamicParams */ null, /* removeSearch */ true); | 95 /* dynamicParams */ null, /* removeSearch */ true); |
| 96 }, | 96 }, |
| 97 | 97 |
| 98 /** @private */ | 98 /** @private */ |
| 99 onMouseTap_: function() { | 99 onMouseTap_: function() { |
| 100 settings.navigateTo( | 100 settings.navigateTo( |
| 101 settings.Route.POINTERS, | 101 settings.Route.POINTERS, |
| 102 /* dynamicParams */ null, /* removeSearch */ true); | 102 /* dynamicParams */ null, /* removeSearch */ true); |
| 103 }, | 103 }, |
| 104 | |
| 105 /** @private */ | |
| 106 onMoreFeaturesTap_: function() { | |
| 107 window.open( | |
| 108 'https://chrome.google.com/webstore/category/collection/accessibility'); | |
| 109 }, | |
| 110 }); | 104 }); |
| OLD | NEW |