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.
aggregation-platform/plugins/kubernetes/ts/tabs.ts

15 lines
376 B

/// <reference path="../../includes.ts"/>
/// <reference path="kubernetesHelpers.ts"/>
/// <reference path="kubernetesPlugin.ts"/>
module Kubernetes {
_module.directive("hawtioTabs", ['HawtioSubTabs', (HawtioSubTabs) => {
return {
link: (scope, element, attrs) => {
HawtioSubTabs.apply(scope.$eval('subTabConfig'));
}
};
}]);
}