| Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/notifications.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/notifications.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/notifications.js
|
| index a28109f97644661db0c56e2f32857958900781ff..77c0edec5e6674b83092cc3cf2f7965927efd75b 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/notifications.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/notifications.js
|
| @@ -8,6 +8,8 @@
|
|
|
| goog.provide('Notifications');
|
|
|
| +goog.require('PanelCommand');
|
| +
|
| /**
|
| * ChromeVox update notification.
|
| * @constructor
|
| @@ -44,8 +46,7 @@ UpdateNotification.prototype = {
|
| * @param {string} notificationId
|
| */
|
| onClicked: function(notificationId) {
|
| - var nextUpdatePage = {url: 'cvox2/background/next_update.html'};
|
| - chrome.tabs.create(nextUpdatePage);
|
| + (new PanelCommand(PanelCommandType.TUTORIAL)).send();
|
| },
|
|
|
| /**
|
|
|