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

Unified Diff: chrome/browser/resources/settings/a11y_page/manage_a11y_page.js

Issue 2713553004: MD Settings: Manage a11y page, clear search param when navigating. (Closed)
Patch Set: Nit Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/a11y_page/manage_a11y_page.js
diff --git a/chrome/browser/resources/settings/a11y_page/manage_a11y_page.js b/chrome/browser/resources/settings/a11y_page/manage_a11y_page.js
index 5d5f101b8a40a49bc2aecaf97c8e6e35989a46e7..605336d02c99a09465940b3bb71bcbf06e6cf213 100644
--- a/chrome/browser/resources/settings/a11y_page/manage_a11y_page.js
+++ b/chrome/browser/resources/settings/a11y_page/manage_a11y_page.js
@@ -60,22 +60,30 @@ Polymer({
/** @private */
onDisplayTap_: function() {
- settings.navigateTo(settings.Route.DISPLAY);
+ settings.navigateTo(
+ settings.Route.DISPLAY,
+ /* dynamicParams */ null, /* removeSearch */ true);
},
/** @private */
onAppearanceTap_: function() {
- settings.navigateTo(settings.Route.APPEARANCE);
+ settings.navigateTo(
+ settings.Route.APPEARANCE,
+ /* dynamicParams */ null, /* removeSearch */ true);
},
/** @private */
onKeyboardTap_: function() {
- settings.navigateTo(settings.Route.KEYBOARD);
+ settings.navigateTo(
+ settings.Route.KEYBOARD,
+ /* dynamicParams */ null, /* removeSearch */ true);
},
/** @private */
onMouseTap_: function() {
- settings.navigateTo(settings.Route.POINTERS);
+ settings.navigateTo(
+ settings.Route.POINTERS,
+ /* dynamicParams */ null, /* removeSearch */ true);
},
/** @private */
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698