mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[registry/vis_types] fix refs to the vis_types
This commit is contained in:
parent
7f1f5544a1
commit
a4cddfa49c
6 changed files with 6 additions and 6 deletions
|
@ -2,7 +2,7 @@ define(function (require) {
|
|||
return function VisFactory(Notifier, Private) {
|
||||
var _ = require('lodash');
|
||||
var aggTypes = Private(require('components/agg_types/index'));
|
||||
var visTypes = Private(require('components/vis_types/index'));
|
||||
var visTypes = Private(require('registry/vis_types'));
|
||||
var AggConfigs = Private(require('components/vis/_agg_configs'));
|
||||
|
||||
var notify = new Notifier({
|
||||
|
|
|
@ -7,7 +7,7 @@ define(function (require) {
|
|||
require('css!components/visualize/visualize.css');
|
||||
var $ = require('jquery');
|
||||
var _ = require('lodash');
|
||||
var visTypes = Private(require('components/vis_types/index'));
|
||||
var visTypes = Private(require('registry/vis_types'));
|
||||
var buildChartData = Private(require('components/visualize/_build_chart_data'));
|
||||
|
||||
var notify = new Notifier({
|
||||
|
|
|
@ -12,7 +12,7 @@ define(function (require) {
|
|||
});
|
||||
|
||||
app.service('savedVisualizations', function (Promise, es, config, SavedVis, Private, Notifier, kbnUrl) {
|
||||
var visTypes = Private(require('components/vis_types/index'));
|
||||
var visTypes = Private(require('registry/vis_types'));
|
||||
var notify = new Notifier({
|
||||
location: 'saved visualization service'
|
||||
});
|
||||
|
|
|
@ -54,7 +54,7 @@ define(function (require) {
|
|||
|
||||
timefilter.enabled = false;
|
||||
|
||||
$scope.visTypes = Private(require('components/vis_types/index'));
|
||||
$scope.visTypes = Private(require('registry/vis_types'));
|
||||
$scope.visTypeUrl = function (visType) {
|
||||
var query = _.defaults({
|
||||
type: visType.name
|
||||
|
|
|
@ -18,7 +18,7 @@ define(function (require) {
|
|||
beforeEach(inject(function (Private) {
|
||||
indexPattern = Private(require('fixtures/stubbed_logstash_index_pattern'));
|
||||
Vis = Private(require('components/vis/vis'));
|
||||
visTypes = Private(require('components/vis_types/index'));
|
||||
visTypes = Private(require('registry/vis_types'));
|
||||
aggTypes = Private(require('components/agg_types/index'));
|
||||
AggConfig = Private(require('components/vis/_agg_config'));
|
||||
bucketCountBetween = Private(require('components/agg_types/buckets/_bucket_count_between'));
|
||||
|
|
|
@ -3,7 +3,7 @@ define(function (require) {
|
|||
var _ = require('lodash');
|
||||
var Vis = Private(require('components/vis/vis'));
|
||||
var aggTypes = Private(require('components/agg_types/index'));
|
||||
var visTypes = Private(require('components/vis_types/index'));
|
||||
var visTypes = Private(require('registry/vis_types'));
|
||||
var stubbedLogstashIndexPattern = Private(require('fixtures/stubbed_logstash_index_pattern'));
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue