Index: notification.js |
=================================================================== |
--- a/notification.js |
+++ b/notification.js |
@@ -85,7 +85,7 @@ |
return; |
event.preventDefault(); |
event.stopPropagation(); |
- ext.windows.getLastFocused(function(win) { win.openTab(link.href); }); |
+ window.open(link.href); |
Thomas Greiner
2014/03/05 13:24:47
You can just use chrome.tabs.create for that.
saroyanm
2014/03/05 13:44:28
Again, connected to the comment for ext.background
|
}); |
var notificationElement = document.getElementById("notification"); |