We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ab5191 commit 269b4b6Copy full SHA for 269b4b6
1 file changed
scriptlets.js
@@ -18,7 +18,7 @@ function removeNode(
18
if ( nodes.length > 0 ) {
19
for (const node of nodes) {
20
if (reNeedle.test(node.outerHTML)) {
21
- node.remove();
+ node.textContent = '';
22
}
23
24
@@ -51,7 +51,7 @@ function removeNode(
51
childList: true,
52
});
53
};
54
- runAt(( ) => { start(); }, 'loading');
+ runAt(( ) => { start(); }, 'interactive');
55
56
57
/// rename-attr.js
0 commit comments