blob: 5b60287122c56f999de579e96b3412094f6278db (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* Finds the root node (document, shadowDOM root) of the given element
* @method
* @memberof Popper.Utils
* @argument {Element} node
* @returns {Element} root node
*/
export default function getRoot(node) {
if (node.parentNode !== null) {
return getRoot(node.parentNode);
}
return node;
}
|