Add repo-list-grid directive
This commit is contained in:
parent
5f2bff43e7
commit
3da0228aaa
5 changed files with 95 additions and 95 deletions
14
static/js/directives/repo-list-grid.js
Normal file
14
static/js/directives/repo-list-grid.js
Normal 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'
|
||||
},
|
||||
};
|
||||
});
|
Reference in a new issue