workaround for lack of DOM element .remove in IE

This commit is contained in:
Brian Gough 2015-03-03 16:44:26 +00:00
parent edc83b905c
commit c52a122966

View file

@ -24,6 +24,6 @@ define [
clearHighlights: () ->
for h in @highlightElements
h?.remove()
h?.parentNode.removeChild(h)
@highlightElements = []
]