mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 23:09:41 +02:00
14 lines
290 B
JavaScript
14 lines
290 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;
|
|
});
|