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

19 lines
418 B
JavaScript
Raw Normal View History

2015-02-23 20:07:49 +00:00
/**
* An element that displays a list of repositories in a grid.
*
*/
angular.module('quay').directive('repoListGrid', function() {
2015-01-12 22:43:36 +00:00
return {
templateUrl: '/static/directives/repo-list-grid.html',
priority: 0,
restrict: 'C',
scope: {
repositories: '=repositories',
starred: '=starred',
user: "=user",
namespace: '=namespace',
toggleStar: '&toggleStar'
},
};
});