Merge branch 'pagesnew' into star

This commit is contained in:
Jimmy Zelinskie 2015-02-23 15:07:49 -05:00
commit 3dbaafbd60
148 changed files with 10997 additions and 10293 deletions

View file

@ -0,0 +1,18 @@
/**
* An element that displays a list of repositories in a grid.
*
*/
angular.module('quay').directive('repoListGrid', function() {
return {
templateUrl: '/static/directives/repo-list-grid.html',
priority: 0,
restrict: 'C',
scope: {
repositories: '=repositories',
starred: '=starred',
user: "=user",
namespace: '=namespace',
toggleStar: '&toggleStar'
},
};
});