-
-
Save ducksoupdev/44a4724395be93b87d39c770b34e71f0 to your computer and use it in GitHub Desktop.
Revisions
-
JasonRammoray created this gist
Mar 9, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ function getDomDepthLevel(root = document.documentElement) { let pathInfo = { route: [], level: 0 }; for (let i = 0, j = root.children.length; i < j; i++) { const curNodePathInfo = getDomDepthLevel(root.children[i]); if (curNodePathInfo.level > pathInfo.level) { pathInfo = curNodePathInfo; } } pathInfo.route.unshift(root); pathInfo.level += 1; return pathInfo; }