Last active
August 29, 2015 14:04
-
-
Save ed-flanagan/f9f58b1fd7b9692c6459 to your computer and use it in GitHub Desktop.
Find Your Uber Passenger Rating
This file contains 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 characters
if (window.Uber.pingData === false) { | |
location.reload(); | |
} else { | |
alert("Name: " + window.Uber.pingData.client.firstName + " " + | |
window.Uber.pingData.client.lastName + "\n" + | |
"Email: " + window.Uber.pingData.client.email + "\n" + | |
"Passenger rating: " + window.Uber.pingData.client.rating + "/5"); | |
//JSON.stringify(window.Uber.pingData.client); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Credit to Aaaron Landy
From this article