1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-25 16:29:44 +02:00
portainer/app/directives/header.js
2017-11-12 20:27:28 +01:00

13 lines
359 B
JavaScript

angular
.module('portainer')
.directive('rdHeader', function rdHeader() {
var directive = {
scope: {
'ngModel': '='
},
transclude: true,
template: '<div class="row header"><div id="loadingbar-placeholder"></div><div class="col-xs-12"><div class="meta" ng-transclude></div></div></div>',
restrict: 'EA'
};
return directive;
});