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
$(document).ready(function(){ | |
// required vars | |
var accessToken = window.location.hash.split("=")[1]; | |
var userID = accessToken.split(".")[0]; | |
// step 1: get users followed | |
getFollowedUsers(userID, accessToken, function(followed_users){ | |
// step 2a: check for non-mutual follows |