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

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

Issue 2480913002: Fix a variety of panel issues (Closed)
Patch Set: Fix bad js annotation, indent, finalizeDom_, etc. Created 4 years, 1 month 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/command_handler.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
index 145b2ed19efa0f2acb2ebd431782b6244a02f285..dcf2dbb1421535f5d5c9ec143188f021b109127d 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
@@ -180,9 +180,12 @@ CommandHandler.onCommand = function(command) {
ChromeVoxState.instance.currentRange);
}
break;
- case 'showNextUpdatePage':
+ case 'help':
(new PanelCommand(PanelCommandType.TUTORIAL)).send();
return false;
+ case 'showNextUpdatePage':
+ (new PanelCommand(PanelCommandType.UPDATE_NOTES)).send();
+ return false;
default:
break;
}

Powered by Google App Engine
This is Rietveld 408576698