Precise DOM morphing
morphing typescript dom
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update morphlex.ts

+1
+1
src/morphlex.ts
··· 12 12 morphNodes(node, guide, idMap); 13 13 } 14 14 15 + // For each node with an ID, push that ID into the IDSet on the IDMap, for each of its parent elements. 15 16 function populateIdMapForNode(node: ParentNode, idMap: IdMap): void { 16 17 const elementsWithIds: NodeListOf<Element> = node.querySelectorAll("[id]"); 17 18