grafana/public/app/plugins/datasource/prometheus/directives.js
2015-09-28 23:15:33 +01:00

14 lines
316 B
JavaScript

define([
'angular',
],
function (angular) {
'use strict';
var module = angular.module('grafana.directives');
module.directive('metricQueryEditorPrometheus', function() {
return {controller: 'PrometheusQueryCtrl', templateUrl: 'app/plugins/datasource/prometheus/partials/query.editor.html'};
});
});