]> git.proxmox.com Git - mirror_xterm.js.git/commitdiff
Check optional port clause after domain too
authorDaniel Imms <daimms@microsoft.com>
Fri, 10 Jun 2016 20:15:59 +0000 (13:15 -0700)
committerDaniel Imms <daimms@microsoft.com>
Fri, 10 Jun 2016 20:15:59 +0000 (13:15 -0700)
addons/linkify/linkify.js

index 8b22256417ce09d6d3c4c0a3249ff831fda8df29..344bc71124bd06a7a107136f241e07b05eeeb5c5 100644 (file)
@@ -32,7 +32,7 @@
       tldClause = '([a-z\\.]{2,6})',
       ipClause = '((\\d{1,3}\\.){3}\\d{1,3})',
       portClause = '(:\\d{1,5})',
-      hostClause = '((' + domainBodyClause + '\\.' + tldClause + ')|(' + ipClause + portClause + '?))',
+      hostClause = '((' + domainBodyClause + '\\.' + tldClause + ')|' + ipClause + ')' + portClause + '?',
       pathClause = '(\\/[\\/\\w\\.-]*)*',
       negatedPathCharacterSet = '[^\\/\\w\\.-]+',
       bodyClause = hostClause + pathClause,