Skip to content

Commit

Permalink
Switched geolocation service to freegeoip.io
Browse files Browse the repository at this point in the history
  • Loading branch information
ToX82 committed Apr 19, 2016
1 parent d51f33d commit 3d153eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cookiebar-latest.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function setupCookieBar() {

// If the user is in EU, then STARTUP
var checkEurope = new XMLHttpRequest();
checkEurope.open('GET', '//freegeoip.net/json/', true);
checkEurope.open('GET', '//freegeoip.io/json/', true);
checkEurope.onreadystatechange = function() {
if (checkEurope.readyState === 4 && checkEurope.status === 200) {
clearTimeout(xmlHttpTimeout);
Expand Down
2 changes: 1 addition & 1 deletion cookiebar-latest.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3d153eb

Please sign in to comment.