Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Commit

Permalink
Use DocumentFragment.childNodes
Browse files Browse the repository at this point in the history
IE doesn’t understand `.children` there.
  • Loading branch information
Tomek Wiszniewski committed Sep 23, 2015
1 parent 22f08e6 commit 6debe6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const wrappedCallback = ({
if (dom) {
// Save the contents of our DocumentFragment before they get nuked.
const domToRemove = (dom.nodeType === DOCUMENT_FRAGMENT_NODE ?
arrayFrom(dom.children) :
arrayFrom(dom.childNodes) :
[dom]
);

Expand Down

0 comments on commit 6debe6c

Please sign in to comment.