mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 02:23:31 -06:00
19 lines
436 B
TypeScript
19 lines
436 B
TypeScript
///<reference path="../../headers/common.d.ts" />
|
|
|
|
import angular from 'angular';
|
|
import $ from 'jquery';
|
|
|
|
var module = angular.module('grafana.directives');
|
|
|
|
/** @ngInject **/
|
|
function queryEditorRowDirective() {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: 'public/app/features/panel/partials/query_editor_row.html',
|
|
transclude: true,
|
|
scope: {ctrl: "="},
|
|
};
|
|
}
|
|
|
|
module.directive('queryEditorRow', queryEditorRowDirective);
|