mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
22 lines
635 B
JavaScript
22 lines
635 B
JavaScript
define([
|
|
'angular',
|
|
],
|
|
function (angular) {
|
|
'use strict';
|
|
|
|
var module = angular.module('grafana.directives');
|
|
|
|
module.directive('metricQueryEditorGraphite', function() {
|
|
return {controller: 'GraphiteQueryCtrl', templateUrl: 'app/plugins/datasource/graphite/partials/query.editor.html'};
|
|
});
|
|
|
|
module.directive('metricQueryOptionsGraphite', function() {
|
|
return {templateUrl: 'app/plugins/datasource/graphite/partials/query.options.html'};
|
|
});
|
|
|
|
module.directive('annotationsQueryEditorGraphite', function() {
|
|
return {templateUrl: 'app/plugins/datasource/graphite/partials/annotations.editor.html'};
|
|
});
|
|
|
|
});
|