File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
.themes/classic/source/javascripts Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ var github = (function(){
10
10
return {
11
11
showRepos : function ( options ) {
12
12
$ . ajax ( {
13
- url : "http ://github.com/api/v2/json/repos/show/ " + options . user + "?callback=?"
13
+ url : "https ://api. github.com/users/ " + options . user + "/repos ?callback=?"
14
14
, type : 'jsonp'
15
15
, error : function ( err ) { $ ( options . target + ' li.loading' ) . addClass ( 'error' ) . text ( "Error loading feed" ) ; }
16
16
, success : function ( data ) {
17
17
var repos = [ ] ;
18
- if ( ! data || ! data . repositories ) { return ; }
19
- for ( var i = 0 ; i < data . repositories . length ; i ++ ) {
20
- if ( options . skip_forks && data . repositories [ i ] . fork ) { continue ; }
21
- repos . push ( data . repositories [ i ] ) ;
18
+ if ( ! data || ! data . data ) { return ; }
19
+ for ( var i = 0 ; i < data . data . length ; i ++ ) {
20
+ if ( options . skip_forks && data . data [ i ] . fork ) { continue ; }
21
+ repos . push ( data . data [ i ] ) ;
22
22
}
23
23
repos . sort ( function ( a , b ) {
24
24
var aDate = new Date ( a . pushed_at ) . valueOf ( ) ,
You can’t perform that action at this time.
0 commit comments