mirror of https://github.com/portainer/portainer
15 lines
622 B
JavaScript
15 lines
622 B
JavaScript
angular.module('portainer.app')
|
|
.directive('rdWidgetCustomHeader', function rdWidgetCustomHeader() {
|
|
var directive = {
|
|
requires: '^rdWidget',
|
|
scope: {
|
|
titleText: '=',
|
|
icon: '='
|
|
},
|
|
transclude: true,
|
|
template: '<div class="widget-header"><div class="row"><span class="pull-left"><img class="custom-header-ico" ng-src="{{icon}}" ng-if="icon"></img><i class="fa fa-rocket" aria-hidden="true" ng-if="!icon"></i> <span class="text-muted"> {{titleText}} </span> </span><span class="pull-right col-xs-6 col-sm-4" ng-transclude></span></div></div>',
|
|
restrict: 'E'
|
|
};
|
|
return directive;
|
|
});
|