From c99b0a92a5bdaa6afd4acf4444f216cb69ff7526 Mon Sep 17 00:00:00 2001 From: Marcus Whybrow Date: Fri, 12 Apr 2013 16:52:40 +0200 Subject: [PATCH] =?UTF-8?q?Add=20callback=3D=3F=20to=20GitHub=20API=20call?= =?UTF-8?q?s=20missing=20it?= --- assets/js/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/js/index.js b/assets/js/index.js index 0e1bf6a..4854885 100644 --- a/assets/js/index.js +++ b/assets/js/index.js @@ -1,8 +1,8 @@ $(function() { var milestonesUrl = "https://api.github.com/repos/marcuswhybrow/minecraft-server-manager/milestones?callback=?", tagsUrl = "https://api.github.com/repos/marcuswhybrow/minecraft-server-manager/tags?callback=?" - stargazersUrl = "https://api.github.com/repos/marcuswhybrow/minecraft-server-manager/stargazers?per_page=100", - contributorsUrl = "https://api.github.com/repos/marcuswhybrow/minecraft-server-manager/contributors?per_page=100"; + stargazersUrl = "https://api.github.com/repos/marcuswhybrow/minecraft-server-manager/stargazers?per_page=100&callback=?", + contributorsUrl = "https://api.github.com/repos/marcuswhybrow/minecraft-server-manager/contributors?per_page=100&callback=?"; var maintainers = [ "marcuswhybrow", @@ -170,4 +170,4 @@ $(function() { var $this = $(this); _gaq.push(['_trackEvent', 'External Link', $this.text(), $this.attr('href')]); }); -}); \ No newline at end of file +});