From 588f77232483a77fc5356aabd5c0098c5861b772 Mon Sep 17 00:00:00 2001 From: spalger Date: Fri, 26 Feb 2016 14:03:18 -0700 Subject: [PATCH] [rename] ConfigTemplate and TemplateVis are now snake_case --- public/app.js | 2 +- public/vis/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/app.js b/public/app.js index 128e7f49..fa5efed9 100644 --- a/public/app.js +++ b/public/app.js @@ -28,7 +28,7 @@ require('ui/saved_objects/saved_object_registry').register(require('plugins/time // TODO: Expose an api for dismissing notifications var unsafeNotifications = require('ui/notify')._notifs; -var ConfigTemplate = require('ui/ConfigTemplate'); +var ConfigTemplate = require('ui/config_template'); require('ui/routes').enable(); diff --git a/public/vis/index.js b/public/vis/index.js index d06deecb..1e96cb9a 100644 --- a/public/vis/index.js +++ b/public/vis/index.js @@ -9,7 +9,7 @@ define(function (require) { require('ui/registry/vis_types').register(TimelionVisProvider); function TimelionVisProvider(Private) { - var TemplateVisType = Private(require('ui/template_vis_type/TemplateVisType')); + var TemplateVisType = Private(require('ui/template_vis_type')); // return the visType object, which kibana will use to display and configure new // Vis object of this type.