summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authors1n <[email protected]>2019-11-04 13:38:58 -0800
committerGitHub <[email protected]>2019-11-04 13:38:58 -0800
commita4011c2aa538ac7144d4ec1bd01107abf4188e41 (patch)
treeeb082efce135c4c14f78112bcab18f5c679ea148
parentsome copypaste fixing (diff)
downloads1n.pw-admin-a4011c2aa538ac7144d4ec1bd01107abf4188e41.tar.xz
s1n.pw-admin-a4011c2aa538ac7144d4ec1bd01107abf4188e41.zip
copypaste fix
-rw-r--r--ip-detection/js/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ip-detection/js/main.js b/ip-detection/js/main.js
index 3589d70..ce117d8 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(response.ip);
- $("#address").html("Location: " + response.city + ", " + response.region);
+ $("#address").html(response.city + ", " + response.region);
$("#details").html(JSON.stringify(response, null, 4));
}, "jsonp");