sharkdp / purescript-flare

A special-purpose UI library for Purescript
286 stars 17 forks source link

Use appendChild() instead of append(). #35

Closed nsaunders closed 4 years ago

nsaunders commented 4 years ago

After reading MDN's comparison of ParentNode.append() and Node.appendChild(), it seems clear that Node.appendChild() is sufficient for this use case, while ParentNode.append() is unsupported in Internet Explorer.

sharkdp commented 4 years ago

Thank you