mirror of https://github.com/portainer/portainer
15 lines
291 B
JavaScript
15 lines
291 B
JavaScript
![]() |
angular
|
||
|
.module('uifordocker')
|
||
|
.directive('rdHeaderTitle', function rdHeaderTitle() {
|
||
|
var directive = {
|
||
|
requires: '^rdHeader',
|
||
|
scope: {
|
||
|
title: '@',
|
||
|
},
|
||
|
transclude: true,
|
||
|
template: '<div class="page">{{title}}</div>',
|
||
|
restrict: 'E'
|
||
|
};
|
||
|
return directive;
|
||
|
});
|