@posthog/rrweb-record 0.0.23 → 0.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/rrweb-record.cjs +2 -2
- package/dist/rrweb-record.cjs.map +1 -1
- package/dist/rrweb-record.js +2 -2
- package/dist/rrweb-record.js.map +1 -1
- package/dist/rrweb-record.umd.cjs +2 -2
- package/dist/rrweb-record.umd.cjs.map +2 -2
- package/dist/rrweb-record.umd.min.cjs +8 -8
- package/dist/rrweb-record.umd.min.cjs.map +2 -2
- package/package.json +1 -1
package/dist/rrweb-record.cjs
CHANGED
|
@@ -240,8 +240,8 @@ function stringifyStylesheet(s2) {
|
|
|
240
240
|
return null;
|
|
241
241
|
}
|
|
242
242
|
let sheetHref = s2.href;
|
|
243
|
-
if (!sheetHref && s2.ownerNode
|
|
244
|
-
sheetHref = s2.ownerNode.
|
|
243
|
+
if (!sheetHref && s2.ownerNode) {
|
|
244
|
+
sheetHref = s2.ownerNode.baseURI;
|
|
245
245
|
}
|
|
246
246
|
const stringifiedRules = Array.from(
|
|
247
247
|
rules2,
|