Sha256: 0c765fb2ec476bfabed6fc8362571a3e220bf3ff81c81c9014f92ad93e935e97
Contents?: true
Size: 758 Bytes
Versions: 8
Compression:
Stored size: 758 Bytes
Contents
/* ## Fields (DEPRECATED) */ define([ 'angular', 'app', 'lodash' ], function (angular, app, _) { 'use strict'; var module = angular.module('kibana.panels.fields', []); app.useModule(module); module.controller('fields', function($scope) { $scope.panelMeta = { status : "Deprecated", description : "You should not use this table, it does not work anymore. The table panel now"+ "integrates a field selector. This module will soon be removed." }; // Set and populate defaults var _d = { style : {}, arrange : 'vertical', micropanel_position : 'right', }; _.defaults($scope.panel,_d); $scope.init = function() { // Place holder until I remove this }; }); });
Version data entries
8 entries across 8 versions & 1 rubygems