20 lines
499 B
JavaScript
20 lines
499 B
JavaScript
|
/**
|
||
|
* An element which displays the settings panel for a repository view.
|
||
|
*/
|
||
|
angular.module('quay').directive('repoPanelSettings', function () {
|
||
|
var directiveDefinitionObject = {
|
||
|
priority: 0,
|
||
|
templateUrl: '/static/directives/repo-view/repo-panel-settings.html',
|
||
|
replace: false,
|
||
|
transclude: false,
|
||
|
restrict: 'C',
|
||
|
scope: {
|
||
|
'repository': '=repository'
|
||
|
},
|
||
|
controller: function($scope, $element, ApiService) {
|
||
|
}
|
||
|
};
|
||
|
return directiveDefinitionObject;
|
||
|
});
|
||
|
|