diff options
author | Philip Hofstetter <phofstetter@sensational.ch> | 2011-08-04 21:15:50 +0200 |
---|---|---|
committer | Philip Hofstetter <phofstetter@sensational.ch> | 2011-08-04 21:15:50 +0200 |
commit | 08af7b4e383976858ca5b7dd3246525c17bcb941 (patch) | |
tree | 8fca462195027deb0beec0b182fa319ad078793b /.themes/classic/source/javascripts/github.js | |
parent | f95591934822064aad21dfa868ccffce34387bf1 (diff) | |
download | my_new_personal_website-08af7b4e383976858ca5b7dd3246525c17bcb941.tar.xz my_new_personal_website-08af7b4e383976858ca5b7dd3246525c17bcb941.zip |
allow limiting the amount of repos to display
by setting github_repo_count to someething that's not 0, you can limit
the amount of repositories to render
Diffstat (limited to '.themes/classic/source/javascripts/github.js')
-rw-r--r-- | .themes/classic/source/javascripts/github.js | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/.themes/classic/source/javascripts/github.js b/.themes/classic/source/javascripts/github.js index 56ebe969..8af51486 100644 --- a/.themes/classic/source/javascripts/github.js +++ b/.themes/classic/source/javascripts/github.js @@ -8,10 +8,10 @@ github = (function(){ t.innerHTML = fragment; } return { - showRepos: function(user, target){ + showRepos: function(options){ var feed = new jXHR(); feed.onerror = function (msg,url) { - $(target + ' li.loading').addClass('error').text("Error loading feed"); + $(options.target + ' li.loading').addClass('error').text("Error loading feed"); } feed.onreadystatechange = function(data){ if (feed.readyState === 4) { @@ -27,11 +27,15 @@ github = (function(){ if (a.valueOf() == b.valueOf()) return 0; return a.valueOf() > b.valueOf() ? -1 : 1; - }) - render(target, repos) + }); + + if (options.count) + repos.splice(options.count); + + render(options.target, repos) } }; - feed.open("GET","http://github.com/api/v2/json/repos/show/"+user+"?callback=?"); + feed.open("GET","http://github.com/api/v2/json/repos/show/"+options.user+"?callback=?"); feed.send(); } }; |