@ampify/aquery
Advanced tools
Comparing version 1.2.9 to 1.2.10
{ | ||
"name": "@ampify/aquery", | ||
"version": "1.2.9", | ||
"version": "1.2.10", | ||
"main": "./dist/aquery.js", | ||
@@ -37,3 +37,3 @@ "module": "./src", | ||
}, | ||
"gitHead": "15395dc11c465f876d1003cabefc198e3505c4fb" | ||
"gitHead": "f405dc34a401c5f46dc608ecba65e0a5efb86ea3" | ||
} |
@@ -197,3 +197,3 @@ import jQuery from 'jquery'; | ||
for (const node of this.nodes) { | ||
if (node.nodeType === 1) { | ||
if (node.nodeType === 1 && node !== document.body) { | ||
node.setAttribute('ampify-keep', ''); | ||
@@ -385,3 +385,3 @@ } | ||
for (const node of this.nodes) { | ||
if (node.nodeType === 1) { | ||
if (node.nodeType === 1 && node !== document.body) { | ||
node.setAttribute('ampify-keep', ''); | ||
@@ -601,3 +601,3 @@ } | ||
for (const node of this.nodes) { | ||
if (node.nodeType === 1) { | ||
if (node.nodeType === 1 && node !== document.body) { | ||
node.setAttribute('ampify-keep', ''); | ||
@@ -604,0 +604,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44282