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
20 lines (17 loc) • 445 B
JavaScript
import _ from 'lodash';
import uiModules from 'ui/modules';
import toasterTemplate from 'ui/notify/partials/toaster.html';
import 'ui/notify/notify.less';
import 'ui/filters/markdown';
import 'ui/directives/truncated';
let notify = uiModules.get('kibana/notify');
notify.directive('kbnNotifications', function () {
return {
restrict: 'E',
scope: {
list: '=list'
},
replace: true,
template: toasterTemplate
};
});