module.js 706 B

1234567891011121314151617181920212223242526272829303132333435
  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. group : "default",
  17. style : {},
  18. arrange : 'vertical',
  19. micropanel_position : 'right',
  20. };
  21. _.defaults($scope.panel,_d);
  22. $scope.init = function() {
  23. // Place holder until I remove this
  24. };
  25. });