This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/js/directives/ui/repo-list-grid.js
2015-02-23 15:07:49 -05:00

18 lines
418 B
JavaScript

/**
* 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'
},
};
});