summaryrefslogtreecommitdiffstats
path: root/public/js/libs/autolink.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js/libs/autolink.js')
-rw-r--r--public/js/libs/autolink.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/public/js/libs/autolink.js b/public/js/libs/autolink.js
new file mode 100644
index 0000000000..a5d1e3a6ef
--- /dev/null
+++ b/public/js/libs/autolink.js
@@ -0,0 +1,12 @@
+jQuery.fn.autolink = function() {
+ return this.find('*').contents().filter(function () { return this.nodeType === 3; }).each(function() {
+ var re = /((([A-Za-z]{3,9}:(?:\/\/)?)(?:[\-;:&=\+\$,\w]+@)?[A-Za-z0-9\.\-]+|(?:www\.|[\-;:&=\+\$,\w]+@)[A-Za-z0-9\.\-]+)((?:\/[\+~%\/\.\w\-]*)?\??(?:[\-\+:=&;%@\.\w]*)#?(?:[\.\!\/\\\w]*))?)/g;
+ $(this).each(function() {
+ $(this).replaceWith(
+ $("<span />").html(
+ this.nodeValue.replace(re, "<a href='$1'>$1</a>")
+ )
+ );
+ });
+ });
+}; \ No newline at end of file