updated github.js to use reqwest.js with Ender
This commit is contained in:
parent
30d5bfca9c
commit
d0d1e2a98d
@ -9,12 +9,11 @@ var github = (function(){
|
|||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
showRepos: function(options){
|
showRepos: function(options){
|
||||||
var feed = new jXHR();
|
$.ajax({
|
||||||
feed.onerror = function (msg,url) {
|
url: "http://github.com/api/v2/json/repos/show/"+options.user+"?callback=?"
|
||||||
$(options.target + ' li.loading').addClass('error').text("Error loading feed");
|
, type: 'jsonp'
|
||||||
};
|
, error: function (err) { $(options.target + ' li.loading').addClass('error').text("Error loading feed"); }
|
||||||
feed.onreadystatechange = function(data) {
|
, success: function(data) {
|
||||||
if (feed.readyState === 4) {
|
|
||||||
var repos = [];
|
var repos = [];
|
||||||
for (var i = 0; i < data.repositories.length; i++){
|
for (var 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; }
|
||||||
@ -31,9 +30,7 @@ var github = (function(){
|
|||||||
if (options.count) { repos.splice(options.count); }
|
if (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.send();
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
})();
|
})();
|
Loading…
Reference in New Issue
Block a user