Precise DOM morphing
morphing typescript dom
0
fork

Configure Feed

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

Update README.md

authored by

Joel Drapper and committed by
GitHub
38b6c8a8 65b14e86

+4 -4
+4 -4
README.md
··· 8 8 9 9 1. No cascading mutations from inserts. Simple inserts should be one DOM operation. 10 10 2. No cascading mutations from removes. Simple removes should be one DOM operation. 11 - 3. No cascading mutations from partial sorts. Morphlex finds the longest increasing subsequence for near optimal partial sorts. 12 - 4. It uses `moveBefore` when available, preserving state. 13 - 5. It uses `isEqualNode`, but in a way that is sensitive to the value of form inputs. 14 - 6. It uses id sets inspired by Idiomorph. 11 + 3. No cascading mutations from partial sorts. Morphlex finds the longest increasing subsequence for near perfect partial sorts. 12 + 4. It uses [`moveBefore`](https://developer.mozilla.org/en-US/docs/Web/API/Element/moveBefore) when available, preserving state. 13 + 5. It uses [`isEqualNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/isEqualNode), but in a way that is sensitive to the value of form inputs. 14 + 6. It uses id sets, inspired by Idiomorph, so ids can help to identify their parent nodes. 15 15 16 16 ## Installation 17 17