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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.js

Issue 2410773003: Make ChromeVox Next the default ChromeVox experience (Closed)
Patch Set: Created 4 years, 2 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
Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.js
index b62b7ec815f0872d06857e25fa541b2be9e61ed0..c4c5b8c82702447eaed2f8c26fafe84a26028179 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.js
@@ -679,6 +679,11 @@ Panel.onCloseTutorial = function() {
window.addEventListener('load', function() {
Panel.init();
+
+ switch (location.search.slice(1)) {
+ case 'tutorial':
+ Panel.onTutorial();
+ }
}, false);
window.addEventListener('hashchange', function() {

Powered by Google App Engine
This is Rietveld 408576698