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/manager-header.js
Joseph Schorr 32635cc641 - Make robots manager fully responsive
- Add a cor-table which automatically stacks and collapses on mobile views
2015-04-17 16:43:53 -04:00

18 lines
No EOL
468 B
JavaScript

/**
* An element which displays the header bar for a manager UI component.
*/
angular.module('quay').directive('managerHeader', function () {
var directiveDefinitionObject = {
priority: 0,
templateUrl: '/static/directives/manager-header.html',
replace: false,
transclude: true,
restrict: 'C',
scope: {
'headerTitle': '@headerTitle'
},
controller: function($scope, $element) {
}
};
return directiveDefinitionObject;
});