Guest User

Untitled

a guest
Feb 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. //...
  2.  
  3. //for each unique user
  4. for(var i in GitHubRepos.displayObjects)
  5. {
  6. //format the github url for our given user and callback function
  7. var github_url = format(GITHUB_JSON_URL, i, "GitHubRepos.DisplayRepos");
  8.  
  9. //insert a script into the DOM to add our JSON data via the github url
  10. //once the script loads it will callback the DATA_DISPLAY_FUCNTION
  11. $('head').append(format(DYNAMIC_SCRIPT_TEMPLATE, github_url));
  12. }
  13.  
  14. //...
Add Comment
Please, Sign In to add comment