mirror of
https://github.com/grafana/grafana.git
synced 2025-01-10 08:03:58 -06:00
17 lines
329 B
JavaScript
17 lines
329 B
JavaScript
define([
|
|
'angular',
|
|
],
|
|
function (angular) {
|
|
'use strict';
|
|
|
|
var module = angular.module('grafana.directives');
|
|
|
|
module.directive('metricQueryEditorOpentsdb', function() {
|
|
return {
|
|
controller: 'OpenTSDBQueryCtrl',
|
|
templateUrl: 'app/plugins/datasource/opentsdb/partials/query.editor.html',
|
|
};
|
|
});
|
|
|
|
});
|