mirror of
https://github.com/moparisthebest/www.moparscape.org
synced 2024-12-26 09:28:56 -05:00
corrected fork skipping logic
This commit is contained in:
parent
16bb7729ec
commit
1860c23632
@ -18,7 +18,7 @@ github = (function(){
|
|||||||
var repos = [];
|
var repos = [];
|
||||||
var i;
|
var i;
|
||||||
for (i = 0; i < data.repositories.length; i++){
|
for (i = 0; i < data.repositories.length; i++){
|
||||||
if (options.skip_forks && !data.repositories[i].fork)
|
if (options.skip_forks && data.repositories[i].fork)
|
||||||
continue;
|
continue;
|
||||||
repos.push(data.repositories[i]);
|
repos.push(data.repositories[i]);
|
||||||
}
|
}
|
||||||
|
@ -59,6 +59,7 @@ twitter_tweet_button: true
|
|||||||
github_user:
|
github_user:
|
||||||
github_repo_count: 0
|
github_repo_count: 0
|
||||||
github_show_profile_link: true
|
github_show_profile_link: true
|
||||||
|
github_skip_forks: true
|
||||||
|
|
||||||
# Google Plus
|
# Google Plus
|
||||||
google_plus_one: true
|
google_plus_one: true
|
||||||
|
Loading…
Reference in New Issue
Block a user