Skip to content

Commit de03b6f

Browse files
author
Nick Frasser
committed
Merge pull request #23 from sgreiner/master
Fix for compatibility with Internet Explorer 7 and 8
2 parents 348643a + 10b4cf6 commit de03b6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/linkified.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ Linkified.linkifyNode = function (node) {
297297
*/
298298
dummyElement.innerHTML = Linkified.linkify.call(
299299
this,
300-
childNode.textContent || childNode.innerText
300+
childNode.textContent || childNode.innerText || childNode.nodeValue
301301
);
302302

303303
/*

0 commit comments

Comments
 (0)