Chromium Code Reviews| 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 e07e88b7bf735b00a81b0c42172c5fef1f61c20d..1dd4bce96c4b276a5b0dd5f1e59cbbcda97f7b84 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 |
| @@ -43,8 +45,7 @@ UpdateNotification.prototype = { |
| * @param {string} notificationId |
| */ |
| onClicked: function(notificationId) { |
| - var nextUpdatePage = {url: 'cvox2/background/next_update.html'}; |
| - chrome.tabs.create(nextUpdatePage); |
|
David Tseng
2016/06/29 20:59:43
Can you delete this file (if you're not planning o
dmazzoni
2016/06/29 22:51:35
Done.
|
| + (new PanelCommand(PanelCommandType.TUTORIAL)).send(); |
| }, |
| /** |