You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
484 B
18 lines
484 B
/// <reference path="../../includes.ts"/>
|
|
/// <reference path="kubernetesHelpers.ts"/>
|
|
/// <reference path="kubernetesPlugin.ts"/>
|
|
|
|
module Kubernetes {
|
|
|
|
_module.directive("hawtioBreadcrumbs", ['HawtioBreadcrumbs', (HawtioBreadcrumbs) => {
|
|
return {
|
|
/*
|
|
templateUrl: Kubernetes.templatePath + 'breadcrumbs.html'
|
|
*/
|
|
link: (scope, element, attrs) => {
|
|
HawtioBreadcrumbs.apply(scope.$eval('breadcrumbConfig'));
|
|
}
|
|
};
|
|
}]);
|
|
}
|