Skip to content

Commit

Permalink
Release v1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrasser committed Aug 5, 2014
1 parent 0d949be commit 2d516e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/jquery.linkify.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Linkify - v1.1.6
* Linkify - v1.1.7
* Find URLs in plain text and return HTML for discovered links.
* https://github.com/HitSend/jQuery-linkify/
*
Expand Down Expand Up @@ -58,7 +58,7 @@
for (;dummyElement.firstChild; ) dummyElement.removeChild(dummyElement.firstChild);
for (dummyElement.innerHTML = Linkified.linkify.call(this, childNode.textContent || childNode.innerText || childNode.nodeValue),
children.push.apply(children, dummyElement.childNodes); dummyElement.firstChild; ) dummyElement.removeChild(dummyElement.firstChild);
} else 1 === childNode.nodeType ? children.push(Linkified.linkifyNode(childNode)) : children.push(childNode);
} else children.push(1 === childNode.nodeType ? Linkified.linkifyNode.call(this, childNode) : childNode);
childNode = childNode.nextSibling;
}
for (;node.firstChild; ) node.removeChild(node.firstChild);
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.linkify.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"url": "http://github.com/HitSend/jQuery-linkify.git"
},
"homepage": "https://github.com/HitSend/jQuery-linkify/",
"version": "1.1.6",
"version": "1.1.7",
"license": "MIT",
"devDependencies": {
"grunt": "0.4.x",
Expand All @@ -22,7 +22,7 @@
"grunt-wrap": "0.x",
"grunt-gh-pages": "0.x",
"grunt-bumper": "1.0.x",
"grunt-contrib-qunit": "0.4.x"
"grunt-contrib-qunit": "0.5.x"
},
"scripts": {
"test": "grunt test --verbose"
Expand Down

0 comments on commit 2d516e7

Please sign in to comment.