module.js 681 B

12345678910111213141516171819202122232425262728293031323334
  1. /*jshint globalstrict:true */
  2. /*global angular:true */
  3. /*
  4. ## Fields (DEPRECATED)
  5. */
  6. 'use strict';
  7. angular.module('kibana.fields', [])
  8. .controller('fields', function($scope, $timeout, dashboard, filterSrv) {
  9. $scope.panelMeta = {
  10. status : "Deprecated",
  11. description : "You should not use this table, it does not work anymore. The table panel now"+
  12. "integrates a field selector. This module will soon be removed."
  13. };
  14. // Set and populate defaults
  15. var _d = {
  16. style : {},
  17. arrange : 'vertical',
  18. micropanel_position : 'right',
  19. };
  20. _.defaults($scope.panel,_d);
  21. $scope.init = function() {
  22. // Place holder until I remove this
  23. };
  24. });