check IPv4/IPv6 (#56)
This commit is contained in:
parent
cfd778dadb
commit
07d5e3f636
|
@ -160,6 +160,9 @@ define(["moment", "numeral", "tablesort", "tablesort.numeric"],
|
||||||
|
|
||||||
if (link) {
|
if (link) {
|
||||||
var a = document.createElement("a")
|
var a = document.createElement("a")
|
||||||
|
if (ip.includes("."))
|
||||||
|
a.href = "http://" + ip + "/"
|
||||||
|
else
|
||||||
a.href = "http://[" + ip + "]/"
|
a.href = "http://[" + ip + "]/"
|
||||||
a.textContent = ip
|
a.textContent = ip
|
||||||
el.appendChild(a)
|
el.appendChild(a)
|
||||||
|
|
Loading…
Reference in a new issue