github-js icon indicating copy to clipboard operation
github-js copied to clipboard

How to only show repo commit history without profile?

Open dongli opened this issue 10 years ago • 1 comments

@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!

dongli avatar Apr 08 '15 00:04 dongli

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.

akshaykumar6 avatar Apr 08 '15 05:04 akshaykumar6