Skip to content

Commit

Permalink
ie needs explicit arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
jhchen committed May 11, 2014
1 parent 631100c commit 798141d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dom.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ DOM =
else return ""

getTextNodes: (root) ->
walker = root.ownerDocument.createTreeWalker(root, NodeFilter.SHOW_TEXT)
walker = root.ownerDocument.createTreeWalker(root, NodeFilter.SHOW_TEXT, null, false)
nodes = []
while node = walker.nextNode()
nodes.push(node)
Expand Down

0 comments on commit 798141d

Please sign in to comment.