portainer/app/directives/header-title.js

15 lines
343 B
JavaScript
Raw Normal View History

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