github-js
github-js copied to clipboard
How to only show repo commit history without profile?
@akshaykumar6 I would like to only show the commit history in my site like 'news' or 'recent activity', so I used repoActivity, but the repository profile is too big. Could github-js provide an option for this? Like noprofile: true? Thanks in advance!
Right now there is no option for showing only repo activity without profile. I'll add it in next version.
But you can achieve the same using CSS for now.
#myProfile .gt-header{
display: none;
}
Assuming myProfile is the id for container div.