Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Add workaround for IE11 crash
Browse files Browse the repository at this point in the history
  • Loading branch information
arv committed Apr 24, 2014
1 parent b04881f commit e059572
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ShadowRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,8 @@
}

function resetDestinationInsertionPoints(node) {
destinationInsertionPointsTable.delete(node);
// IE11 crashes when delete is used.
destinationInsertionPointsTable.set(node, undefined);
}

// AllowedSelectors :
Expand Down

0 comments on commit e059572

Please sign in to comment.