kibana-123
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
19 lines (17 loc) • 373 B
JavaScript
import html from 'ui/partials/info.html';
import uiModules from 'ui/modules';
uiModules
.get('kibana')
.directive('kbnInfo', function () {
return {
restrict: 'E',
scope: {
info: '@',
placement: '@'
},
template: html,
link: function ($scope) {
$scope.placement = $scope.placement || 'top';
}
};
});