Skip to content
This repository has been archived by the owner on Nov 22, 2017. It is now read-only.

[rename] ConfigTemplate and TemplateVis are now snake_case #71

Merged
merged 1 commit into from
Mar 15, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down
2 changes: 1 addition & 1 deletion public/vis/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down