jsHint'ed github.js
This commit is contained in:
parent
40a7809d65
commit
569717abdc
@ -1,10 +1,10 @@
|
|||||||
github = (function(){
|
var github = (function(){
|
||||||
function render(target, repos){
|
function render(target, repos){
|
||||||
var i = 0, fragment = '', t = $(target)[0];
|
var i = 0, fragment = '', t = $(target)[0];
|
||||||
|
|
||||||
for(i = 0; i < repos.length; i++)
|
for(i = 0; i < repos.length; i++) {
|
||||||
fragment += '<li><a href="'+repos[i].url+'">'+repos[i].name+'</a><p>'+repos[i].description+'</p></li>';
|
fragment += '<li><a href="'+repos[i].url+'">'+repos[i].name+'</a><p>'+repos[i].description+'</p></li>';
|
||||||
|
}
|
||||||
t.innerHTML = fragment;
|
t.innerHTML = fragment;
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
@ -12,28 +12,24 @@ github = (function(){
|
|||||||
var feed = new jXHR();
|
var feed = new jXHR();
|
||||||
feed.onerror = function (msg,url) {
|
feed.onerror = function (msg,url) {
|
||||||
$(options.target + ' li.loading').addClass('error').text("Error loading feed");
|
$(options.target + ' li.loading').addClass('error').text("Error loading feed");
|
||||||
}
|
};
|
||||||
feed.onreadystatechange = function(data) {
|
feed.onreadystatechange = function(data) {
|
||||||
if (feed.readyState === 4) {
|
if (feed.readyState === 4) {
|
||||||
var repos = [];
|
var repos = [];
|
||||||
var i;
|
for (var i = 0; i < data.repositories.length; i++){
|
||||||
for (i = 0; i < data.repositories.length; i++){
|
if (options.skip_forks && data.repositories[i].fork) { continue; }
|
||||||
if (options.skip_forks && data.repositories[i].fork)
|
|
||||||
continue;
|
|
||||||
repos.push(data.repositories[i]);
|
repos.push(data.repositories[i]);
|
||||||
}
|
}
|
||||||
repos.sort(function(a, b) {
|
repos.sort(function(a, b) {
|
||||||
var a = new Date(a.pushed_at),
|
var aDate = new Date(a.pushed_at).valueOf(),
|
||||||
b = new Date(b.pushed_at);
|
bDate = new Date(b.pushed_at).valueOf();
|
||||||
|
|
||||||
if (a.valueOf() == b.valueOf()) return 0;
|
if (aDate === bDate) { return 0; }
|
||||||
return a.valueOf() > b.valueOf() ? -1 : 1;
|
return aDate > bDate ? -1 : 1;
|
||||||
});
|
});
|
||||||
|
|
||||||
if (options.count)
|
if (options.count) { repos.splice(options.count); }
|
||||||
repos.splice(options.count);
|
render(options.target, repos);
|
||||||
|
|
||||||
render(options.target, repos)
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
feed.open("GET","http://github.com/api/v2/json/repos/show/"+options.user+"?callback=?");
|
feed.open("GET","http://github.com/api/v2/json/repos/show/"+options.user+"?callback=?");
|
||||||
|
Loading…
Reference in New Issue
Block a user