Last active
June 5, 2024 11:28
-
-
Save brennandunn/d73141fe366cfab994aeda1477daa80c to your computer and use it in GitHub Desktop.
Revisions
-
brennandunn revised this gist
Dec 1, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ $.ajax('https://ipapi.co/json/') .then( function success(response) { window.geolocation = response; loadRM(); }, -
brennandunn created this gist
Oct 27, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ $.ajax('https://ipapi.co/json/') .then( function success(response) { window.location = response; loadRM(); }, function fail(data, status) { loadRM(); } ); function loadRM() { // insert your RightMessage script here! }