mirror of https://github.com/grafana/grafana.git
14 lines
298 B
JavaScript
14 lines
298 B
JavaScript
|
define([
|
||
|
'angular',
|
||
|
],
|
||
|
function (angular) {
|
||
|
'use strict';
|
||
|
|
||
|
var module = angular.module('grafana.directives');
|
||
|
|
||
|
module.directive('annotationsQueryEditorElasticsearch', function() {
|
||
|
return {templateUrl: 'app/plugins/datasource/elasticsearch/partials/annotations.editor.html'};
|
||
|
});
|
||
|
|
||
|
});
|