 Issue 29532767:
  Issue 5593 - Use messaging in popup for prefs, whitelisting, and stats  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockpluschrome/
    
  
    Issue 29532767:
  Issue 5593 - Use messaging in popup for prefs, whitelisting, and stats  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockpluschrome/| Index: notification.js | 
| =================================================================== | 
| --- a/notification.js | 
| +++ b/notification.js | 
| @@ -77,17 +77,17 @@ | 
| { | 
| let link = event.target; | 
| while (link && link !== messageElement && link.localName !== "a") | 
| link = link.parentNode; | 
| if (!link) | 
| return; | 
| event.preventDefault(); | 
| event.stopPropagation(); | 
| - ext.pages.open(link.href); | 
| + chrome.tabs.create({url: link.href}); | 
| }); | 
| let notificationElement = document.getElementById("notification"); | 
| notificationElement.className = notification.type; | 
| notificationElement.hidden = false; | 
| notificationElement.addEventListener("click", event => | 
| { | 
| if (event.target.id == "notification-close") |