Skip to content

Commit

Permalink
Merge branch 'master' of github.com:TylerBrock/mongo-contributor-hub
Browse files Browse the repository at this point in the history
  • Loading branch information
aheckmann committed Sep 20, 2012
2 parents bde71a8 + 97ea45c commit 689b1dd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion views/index.jade
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ html
td Followers
td Forks
each project in projects
tr
tr.project
td
a(href="http://github.com/#{encodeURIComponent(project.owner)}/#{encodeURIComponent(project.name)}", target="_blank") #{project.name}
td(owner='#{project.owner}')
Expand All @@ -59,3 +59,11 @@ html

script(src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js")
script(src="/libs/bootstrap/js/bootstrap.min.js")
script
$(document).ready(function(){
if($("tr.project").size() < 20) {
$("ul.pager").hide();
} else {
$("ul.pager").show();
}
});

0 comments on commit 689b1dd

Please sign in to comment.