mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
24 lines
498 B
JavaScript
24 lines
498 B
JavaScript
define([
|
|
'angular',
|
|
'lodash',
|
|
'jquery',
|
|
],
|
|
function (angular, _, $) {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('grafana.directives')
|
|
.directive('tightFormAdvancedOption', function($compile, uiSegmentSrv, $q) {
|
|
return {
|
|
templateUrl: 'app/plugins/datasource/elasticsearch/partials/advancedOption.html',
|
|
restrict: 'E',
|
|
scope: {
|
|
model: "=",
|
|
option: "=",
|
|
},
|
|
link: function postLink($scope, elem) {
|
|
}
|
|
};
|
|
});
|
|
});
|