We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5478728 commit 4324fa0Copy full SHA for 4324fa0
docs/components/PlotRender.js
@@ -90,6 +90,12 @@ class Element {
90
child.parentNode = this;
91
return child;
92
}
93
+ cloneNode(deep) {
94
+ const clone = new Element(this.ownerDocument, this.tagName);
95
+ clone.attributes = {...this.attributes};
96
+ if (deep) clone.children = this.children.map((child) => child.cloneNode(deep));
97
+ return clone;
98
+ }
99
querySelector() {
100
return null;
101
0 commit comments