Add the namespaces box to the right hand side and make other small UI improvements to the repo list view
This commit is contained in:
parent
785de61c59
commit
08f006a90c
6 changed files with 81 additions and 33 deletions
|
@ -46,6 +46,10 @@
|
|||
}
|
||||
});
|
||||
|
||||
$scope.isOrganization = function(namespace) {
|
||||
return !!UserService.getOrganization(namespace);
|
||||
};
|
||||
|
||||
// Star a repository or unstar a repository.
|
||||
$scope.toggleStar = function(repo) {
|
||||
if (repo.is_starred) {
|
||||
|
|
Reference in a new issue