diff --git a/src/js/dashboard-common.js b/src/js/dashboard-common.js index 7b22e6d42..47e04c5ca 100644 --- a/src/js/dashboard-common.js +++ b/src/js/dashboard-common.js @@ -113,7 +113,7 @@ self.uBlockDashboard.dateNowToSensibleString = function() { /******************************************************************************/ // Open links in the proper window -uDom('a').attr('target', '_blank').attr('rel', 'noopener noreferrer'); +uDom('a').attr('target', '_blank'); uDom('a[href*="dashboard.html"]').attr('target', '_parent'); uDom('.whatisthis').on('click', function() { uDom(this) diff --git a/src/js/document-blocked.js b/src/js/document-blocked.js index 89d6a0e51..6657a027f 100644 --- a/src/js/document-blocked.js +++ b/src/js/document-blocked.js @@ -73,7 +73,6 @@ var details = {}; node.textContent = entry.title; node.setAttribute('href', url); node.setAttribute('target', '_blank'); - node.setAttribute('rel', 'noopener noreferrer'); } else { node = document.createTextNode(entry.title); } diff --git a/src/settings.html b/src/settings.html index 6ad861f9a..f96381519 100644 --- a/src/settings.html +++ b/src/settings.html @@ -21,8 +21,8 @@