[refactor][s]: rename view-flot-graph to view-graph and FlotGraph to Graph.

This commit is contained in:
Rufus Pollock
2012-04-15 16:03:08 +01:00
parent 16e3797b4c
commit 4ede229b7b
9 changed files with 12 additions and 12 deletions

View File

@@ -20,7 +20,7 @@ this.recline.View = this.recline.View || {};
//
// NB: should *not* provide an el argument to the view but must let the view
// generate the element itself (you can then append view.el to the DOM.
my.FlotGraph = Backbone.View.extend({
my.Graph = Backbone.View.extend({
tagName: "div",
className: "data-graph-container",

View File

@@ -34,7 +34,7 @@ this.recline.View = this.recline.View || {};
//
// **el**: (required) DOM element to bind to. NB: the element already
// being in the DOM is important for rendering of some subviews (e.g.
// FlotGraph).
// Graph).
//
// **views**: (optional) the dataset views (Grid, Graph etc) for
// DataExplorer to show. This is an array of view hashes. If not provided
@@ -52,7 +52,7 @@ this.recline.View = this.recline.View || {};
// {
// id: 'graph',
// label: 'Graph',
// view: new recline.View.FlotGraph({
// view: new recline.View.Graph({
// model: dataset
// })
// }