github.js: normalize comment

This commit is contained in:
XhmikosR 2012-09-29 16:57:30 +03:00 committed by PKEuS
parent 830f4559a0
commit b2a36d5841
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
// Inspired by:
// http://aboutcode.net/2010/11/11/list-github-projects-using-javascript.html
// Inspired by: http://aboutcode.net/2010/11/11/list-github-projects-using-javascript.html
jQuery.fn.listCommits = function(username, repository, branch) {
this.html('<span>Querying GitHub for recent commits&hellip;</span>');

View File

@ -1 +1,2 @@
// Inspired by: http://aboutcode.net/2010/11/11/list-github-projects-using-javascript.html
jQuery.fn.listCommits=function(e,t,n){function i(e){var t=e.indexOf("\n");return t>-1?e.slice(0,t):e}this.html("<span>Querying GitHub for recent commits&hellip;</span>");var r=this;$.getJSON("https://api.github.com/repos/"+e+"/"+t+"/commits?sha="+n+"&callback=?",function(n){var s=n.data,o=$('<ul class="rssfeeditems"/>');r.empty().append(o),$(s).each(function(n){var r="https://github.com/"+e+"/"+t+"/commit/"+this.sha,s=i(this.commit.message),u=this.author.login;u==""&&(u=this.author.name),o.append('<li><a href="'+r+'">'+s+"</a> <em>by <strong>"+u+"</strong></em></li>");if(n==9)return!1})})};