2016-06-08 06:23:11 +00:00
|
|
|
angular
|
2016-09-04 02:50:37 +00:00
|
|
|
.module('portainer')
|
2016-06-08 06:23:11 +00:00
|
|
|
.directive('rdHeaderTitle', function rdHeaderTitle() {
|
|
|
|
var directive = {
|
|
|
|
requires: '^rdHeader',
|
|
|
|
scope: {
|
2016-06-08 07:15:47 +00:00
|
|
|
title: '@'
|
2016-06-08 06:23:11 +00:00
|
|
|
},
|
|
|
|
transclude: true,
|
2016-06-14 02:32:44 +00:00
|
|
|
template: '<div class="page">{{title}}<span class="header_title_content" ng-transclude><span></div>',
|
2016-06-08 06:23:11 +00:00
|
|
|
restrict: 'E'
|
|
|
|
};
|
|
|
|
return directive;
|
|
|
|
});
|