Skip to content

Commit

Permalink
still working on SVG createContextualFragment - no harm for anyone else
Browse files Browse the repository at this point in the history
  • Loading branch information
WebReflection committed Nov 14, 2023
1 parent b90e5c9 commit 94a5b64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cjs/interface/range.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ class Range {
for (const child of childNodes) {
Object.setPrototypeOf(child, SVGElement.prototype);
child.ownerSVGElement = document;
content.appendChild(child);
}
content.append(...childNodes);
}
else
this.selectNode(content);
Expand Down
2 changes: 1 addition & 1 deletion esm/interface/range.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ export class Range {
for (const child of childNodes) {
Object.setPrototypeOf(child, SVGElement.prototype);
child.ownerSVGElement = document;
content.appendChild(child);
}
content.append(...childNodes);
}
else
this.selectNode(content);
Expand Down
2 changes: 1 addition & 1 deletion worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -11514,8 +11514,8 @@ class Range {
for (const child of childNodes) {
Object.setPrototypeOf(child, SVGElement$1.prototype);
child.ownerSVGElement = document;
content.appendChild(child);
}
content.append(...childNodes);
}
else
this.selectNode(content);
Expand Down

0 comments on commit 94a5b64

Please sign in to comment.