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

Commit

Permalink
Merge pull request #71 from spalger/fix/snakecase
Browse files Browse the repository at this point in the history
[rename] ConfigTemplate and TemplateVis are now snake_case
  • Loading branch information
Rashid Khan committed Mar 15, 2016
2 parents f941d93 + 588f772 commit 7d14fd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,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 @@ -10,7 +10,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

0 comments on commit 7d14fd1

Please sign in to comment.