You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently I've got a white page with InstantClick. Investigating how this occurred, I have found one problem.
functionremoveNoscriptTags(html){/* Must be done on text, not on a node's innerHTML, otherwise strange * things happen with implicitly closed elements (see the Noscript test). */returnhtml.replace(/<noscript[\s\S]+<\/noscript>/gi,'')}
this regex hits from first<noscript through last</noscript>, so contents between two <noscript>...</noscript>s are also blown away.
The text was updated successfully, but these errors were encountered:
Recently I've got a white page with InstantClick. Investigating how this occurred, I have found one problem.
this regex hits from first
<noscript
through last</noscript>
, so contents between two<noscript>...</noscript>
s are also blown away.The text was updated successfully, but these errors were encountered: