gorhill
7 years ago
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with
7 additions and
4 deletions
-
src/js/contentscript.js
|
|
@ -504,13 +504,16 @@ var nodeListsAddedHandler = function(nodeLists) { |
|
|
|
|
|
|
|
var renderNoscriptTags = function(response) { |
|
|
|
if ( response !== true ) { return; } |
|
|
|
|
|
|
|
var parent, span; |
|
|
|
var parser = new DOMParser(); |
|
|
|
var doc, parent, span, meta; |
|
|
|
for ( var noscript of noscripts ) { |
|
|
|
parent = noscript.parentNode; |
|
|
|
if ( parent === null ) { continue; } |
|
|
|
span = document.createElement('span'); |
|
|
|
span.innerHTML = noscript.textContent; |
|
|
|
doc = parser.parseFromString( |
|
|
|
'<span>' + noscript.textContent + '</span>', |
|
|
|
'text/html' |
|
|
|
); |
|
|
|
span = document.adoptNode(doc.querySelector('span')); |
|
|
|
span.style.setProperty('display', 'inline', 'important'); |
|
|
|
parent.replaceChild(span, noscript); |
|
|
|
} |
|
|
|