No manual <noscript> removal required anymore

This commit is contained in:
Jakub Vrana 2011-05-16 16:26:24 +02:00
parent 4ff2f03a0f
commit 48981e9acb

View file

@ -100,7 +100,7 @@ function setHtml(id, html) {
if (html == undefined) {
el.parentNode.innerHTML = '&nbsp;';
} else {
el.innerHTML = html.replace(/<noscript>.*<\/noscript>/i, ''); // required for Google Chrome // hopes that there will be only one <noscript> on each line
el.innerHTML = html;
}
}
}