diff options
| author | s1n <[email protected]> | 2019-11-04 13:38:58 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-11-04 13:38:58 -0800 |
| commit | a4011c2aa538ac7144d4ec1bd01107abf4188e41 (patch) | |
| tree | eb082efce135c4c14f78112bcab18f5c679ea148 | |
| parent | some copypaste fixing (diff) | |
| download | s1n.pw-admin-a4011c2aa538ac7144d4ec1bd01107abf4188e41.tar.xz s1n.pw-admin-a4011c2aa538ac7144d4ec1bd01107abf4188e41.zip | |
copypaste fix
| -rw-r--r-- | ip-detection/js/main.js | 2 |
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"); |