Add repo-list-grid directive

This commit is contained in:
Jimmy Zelinskie 2015-01-12 17:43:36 -05:00
parent 5f2bff43e7
commit 3da0228aaa
5 changed files with 95 additions and 95 deletions

View file

@ -0,0 +1,14 @@
quayApp.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'
},
};
});