Skip to content

Commit 4d44a64

Browse files
author
nfrasser
committed
Release v1.1.5
1 parent de03b6f commit 4d44a64

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jQuery-linkify",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"homepage": "https://github.com/HitSend/jQuery-linkify/",
55
"authors": [
66
"SoapBox Innovations, Inc. <[email protected]>"

dist/jquery.linkify.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Linkify - v1.1.4
2+
* Linkify - v1.1.5
33
* Find URLs in plain text and return HTML for discovered links.
44
* https://github.com/HitSend/jQuery-linkify/
55
*
@@ -56,7 +56,7 @@
5656
childNode = node.firstChild, childCount = node.childElementCount; childNode; ) {
5757
if (3 === childNode.nodeType) {
5858
for (;dummyElement.firstChild; ) dummyElement.removeChild(dummyElement.firstChild);
59-
for (dummyElement.innerHTML = Linkified.linkify.call(this, childNode.textContent || childNode.innerText),
59+
for (dummyElement.innerHTML = Linkified.linkify.call(this, childNode.textContent || childNode.innerText || childNode.nodeValue),
6060
children.push.apply(children, dummyElement.childNodes); dummyElement.firstChild; ) dummyElement.removeChild(dummyElement.firstChild);
6161
} else 1 === childNode.nodeType ? children.push(Linkified.linkifyNode(childNode)) : children.push(childNode);
6262
childNode = childNode.nextSibling;

dist/jquery.linkify.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"url": "http://github.com/HitSend/jQuery-linkify.git"
99
},
1010
"homepage": "https://github.com/HitSend/jQuery-linkify/",
11-
"version": "1.1.4",
11+
"version": "1.1.5",
1212
"license": "MIT",
1313
"devDependencies": {
1414
"grunt": "0.4.x",

0 commit comments

Comments
 (0)