mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
Fix format
This commit is contained in:
parent
6420d64534
commit
e7e8d16e9d
@ -39,11 +39,7 @@ const parseNodeTree = (context: Context, node: Node, parent: ElementContainer, r
|
||||
parseNodeTree(context, childNode.shadowRoot, container, root);
|
||||
}
|
||||
|
||||
if (
|
||||
!isTextareaElement(childNode) &&
|
||||
!isSVGElement(childNode) &&
|
||||
!isSelectElement(childNode)
|
||||
) {
|
||||
if (!isTextareaElement(childNode) && !isSVGElement(childNode) && !isSelectElement(childNode)) {
|
||||
parseNodeTree(context, childNode, container, root);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user