github.js: switch to 4 spaces for indentation

This commit is contained in:
XhmikosR 2013-03-05 18:51:22 +02:00 committed by PKEuS
parent 3a35944c9e
commit cff2126df9
1 changed files with 22 additions and 22 deletions

View File

@ -1,35 +1,35 @@
/*! Inspired by: http://aboutcode.net/2010/11/11/list-github-projects-using-javascript.html */
/*jshint forin:true, noarg:true, noempty:true, eqeqeq:true, bitwise:true, strict:false, undef:true, unused:true, curly:true, browser:true, jquery:true, indent:2, maxerr:50 */
/*jshint forin:true, noarg:true, noempty:true, eqeqeq:true, bitwise:true, strict:false, undef:true, unused:true, curly:true, browser:true, jquery:true, indent:4*/
jQuery.fn.listCommits = function(username, repository, branch) {
this.html('<span>Querying GitHub for recent commits&hellip;</span>');
this.html('<span>Querying GitHub for recent commits&hellip;</span>');
var target = this;
$.getJSON('https://api.github.com/repos/' + username + '/' + repository + '/commits?sha=' + branch + '&callback=?', function(response) {
var commits = response.data,
list = $('<ul class="rssfeeditems"/>');
target.empty().append(list);
var target = this;
$.getJSON('https://api.github.com/repos/' + username + '/' + repository + '/commits?sha=' + branch + '&callback=?', function(response) {
var commits = response.data,
list = $('<ul class="rssfeeditems"/>');
target.empty().append(list);
$(commits).each(function(i) {
var githubUrl = 'https://github.com/' + username + '/' + repository + '/commit/' + this.sha,
shortMessage = cutLines(this.commit.message),
commitAuthor = this.author !== null ? this.author.login : this.commit.author.name;
$(commits).each(function(i) {
var githubUrl = 'https://github.com/' + username + '/' + repository + '/commit/' + this.sha,
shortMessage = cutLines(this.commit.message),
commitAuthor = this.author !== null ? this.author.login : this.commit.author.name;
list.append('<li><a href="' + githubUrl + '">' + shortMessage + '</a> <em>by <strong>' + commitAuthor + '</strong></em></li>');
list.append('<li><a href="' + githubUrl + '">' + shortMessage + '</a> <em>by <strong>' + commitAuthor + '</strong></em></li>');
if (i === 9) {
return false;
}
if (i === 9) {
return false;
}
});
});
});
function cutLines(message) {
var lineFeed = message.indexOf("\n");
function cutLines(message) {
var lineFeed = message.indexOf("\n");
if (lineFeed > -1) {
return message.slice(0, lineFeed);
if (lineFeed > -1) {
return message.slice(0, lineFeed);
}
return message;
}
return message;
}
};