| 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 4a34dd565fe2792ec36fa9e40dfaef0d34af920a..b87ad1267bb4d737f39927558988abe8539f6324 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
|
| @@ -159,7 +159,11 @@ CommandHandler.onCommand = function(command) {
|
| cvox.QueueMode.FLUSH);
|
| return false;
|
| case 'reportIssue':
|
| - var url = Background.ISSUE_URL;
|
| + var url = 'https://code.google.com/p/chromium/issues/entry?' +
|
| + 'labels=Type-Bug,Pri-2,cvox2,OS-Chrome&' +
|
| + 'components=UI>accessibility&' +
|
| + 'description=';
|
| +
|
| var description = {};
|
| description['Mode'] = ChromeVoxState.instance.mode;
|
| description['Version'] = chrome.app.getDetails().version;
|
|
|