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

Side by Side Diff: chrome/browser/resources/settings/a11y_page/manage_a11y_page.js

Issue 2812983004: [MD settings] link to font settings from a11y subpage (Closed)
Patch Set: Created 3 years, 8 months 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 unified diff | Download patch
OLDNEW
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 }, 86 },
87 87
88 /** @private */ 88 /** @private */
89 onDisplayTap_: function() { 89 onDisplayTap_: function() {
90 settings.navigateTo( 90 settings.navigateTo(
91 settings.Route.DISPLAY, 91 settings.Route.DISPLAY,
92 /* dynamicParams */ null, /* removeSearch */ true); 92 /* dynamicParams */ null, /* removeSearch */ true);
93 }, 93 },
94 94
95 /** @private */ 95 /** @private */
96 onAppearanceTap_: function() { 96 onFontTap_: function() {
97 settings.navigateTo( 97 settings.navigateTo(
98 settings.Route.APPEARANCE, 98 settings.Route.FONTS,
99 /* dynamicParams */ null, /* removeSearch */ true); 99 /* dynamicParams */ null, /* removeSearch */ true);
100 }, 100 },
101 101
102 /** @private */ 102 /** @private */
103 onKeyboardTap_: function() { 103 onKeyboardTap_: function() {
104 settings.navigateTo( 104 settings.navigateTo(
105 settings.Route.KEYBOARD, 105 settings.Route.KEYBOARD,
106 /* dynamicParams */ null, /* removeSearch */ true); 106 /* dynamicParams */ null, /* removeSearch */ true);
107 }, 107 },
108 108
109 /** @private */ 109 /** @private */
110 onMouseTap_: function() { 110 onMouseTap_: function() {
111 settings.navigateTo( 111 settings.navigateTo(
112 settings.Route.POINTERS, 112 settings.Route.POINTERS,
113 /* dynamicParams */ null, /* removeSearch */ true); 113 /* dynamicParams */ null, /* removeSearch */ true);
114 }, 114 },
115 115
116 /** @private */ 116 /** @private */
117 onMoreFeaturesTap_: function() { 117 onMoreFeaturesTap_: function() {
118 window.open( 118 window.open(
119 'https://chrome.google.com/webstore/category/collection/accessibility'); 119 'https://chrome.google.com/webstore/category/collection/accessibility');
120 }, 120 },
121 }); 121 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698