summaryrefslogtreecommitdiff
path: root/ip-detection
diff options
context:
space:
mode:
authors1n <[email protected]>2019-11-04 13:33:00 -0800
committerGitHub <[email protected]>2019-11-04 13:33:00 -0800
commit2f261f1e1078b7fd92213f7afeedd325460d2469 (patch)
tree1a521d7a338f80684e4bd7891378f37cd996e30d /ip-detection
parentUpdate index.html (diff)
downloads1n.pw-admin-2f261f1e1078b7fd92213f7afeedd325460d2469.tar.xz
s1n.pw-admin-2f261f1e1078b7fd92213f7afeedd325460d2469.zip
Update main.js
Diffstat (limited to 'ip-detection')
-rw-r--r--ip-detection/js/main.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ip-detection/js/main.js b/ip-detection/js/main.js
index 28a66dc..3589d70 100644
--- a/ip-detection/js/main.js
+++ b/ip-detection/js/main.js
@@ -1,5 +1,5 @@
$.get("https://ipinfo.io/json", function (response) {
- $("#ip").html("IP: " + response.ip);
+ $("#ip").html(response.ip);
$("#address").html("Location: " + response.city + ", " + response.region);
$("#details").html(JSON.stringify(response, null, 4));
-}, "jsonp"); \ No newline at end of file
+}, "jsonp");