advancedOptions.js 498 B

1234567891011121314151617181920212223
  1. define([
  2. 'angular',
  3. 'lodash',
  4. 'jquery',
  5. ],
  6. function (angular, _, $) {
  7. 'use strict';
  8. angular
  9. .module('grafana.directives')
  10. .directive('tightFormAdvancedOption', function($compile, uiSegmentSrv, $q) {
  11. return {
  12. templateUrl: 'app/plugins/datasource/elasticsearch/partials/advancedOption.html',
  13. restrict: 'E',
  14. scope: {
  15. model: "=",
  16. option: "=",
  17. },
  18. link: function postLink($scope, elem) {
  19. }
  20. };
  21. });
  22. });