-
Notifications
You must be signed in to change notification settings - Fork 18
Organization Widgets
Akshay Sharma edited this page Mar 22, 2015
·
1 revision
It will render GitHub organization details to the selector. Only the public repositories count will be shown in the widget.
Parameters
- orgname is a string which has to be valid GitHub account organization username.
- selector is a string containing one or more CSS selectors separated by commas.
Github.orgProfile({
orgname: 'facebook',
selector: '.org-1'
});
It will render GitHub organization details and public activity to the selector. Activities older than 90 days will not be shown in the feed.
Parameters
- orgname is a string which has to be valid GitHub account organization username.
- selector is a string containing one or more CSS selectors separated by commas.
- limit(optional) - default and maximum is 30 - is an integer value to restrict the number of recent activities you want to render.
Github.orgActivity({
orgname: 'google',
selector: '.org-2'
});