diff --git a/.themes/classic/source/_includes/asides/github.html b/.themes/classic/source/_includes/asides/github.html index 07b37aa..5e0b0ed 100644 --- a/.themes/classic/source/_includes/asides/github.html +++ b/.themes/classic/source/_includes/asides/github.html @@ -13,7 +13,12 @@ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(jxhr, s); } - github.showRepos('{{site.github_user}}', '#gh_repos'); + + github.showRepos({ + user: '{{site.github_user}}', + count: {{site.github_repo_count}}, + target: '#gh_repos' + }); }); diff --git a/.themes/classic/source/javascripts/github.js b/.themes/classic/source/javascripts/github.js index 56ebe96..8af5148 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(); } }; diff --git a/_config.yml b/_config.yml index 30adf81..a50abb3 100644 --- a/_config.yml +++ b/_config.yml @@ -57,6 +57,7 @@ twitter_tweet_button: true # github repositories github_user: +github_repo_count: 0 # Google Plus google_plus_one: true