diff --git a/js/githubresume.js b/js/githubresume.js index 73fec72..3c6c0f9 100644 --- a/js/githubresume.js +++ b/js/githubresume.js @@ -372,7 +372,11 @@ var run = function() { ++itemCount; }); } else { - $('#jobs').html('').append('
I do not have any public repositories. Sorry.
'); + if(data.length > 0){ + $('#jobs').html('').append('All my repositories are forks. Sorry.
'); + } else { + $('#jobs').html('').append('I do not have any public repositories. Sorry.
'); + } } } });