UNPKG

kibana-with-account

Version:

kibana-with-account is develop based kibana project

20 lines (18 loc) 416 B
define(function (require) { var html = require('ui/partials/info.html'); require('ui/modules') .get('kibana') .directive('kbnInfo', function () { return { restrict: 'E', scope: { info: '@', placement: '@' }, template: html, link: function ($scope) { $scope.placement = $scope.placement || 'top'; } }; }); });