diff --git a/css/graph.css b/css/graph.css index 413ac14e..d88168c4 100644 --- a/css/graph.css +++ b/css/graph.css @@ -28,14 +28,6 @@ padding-left: 0px; } -.recline-graph .editor-info { - padding-left: 4px; -} - -.recline-graph .editor-info { - cursor: pointer; -} - .recline-graph .editor form { padding-left: 4px; } @@ -44,11 +36,6 @@ width: 100%; } -.recline-graph .editor-info { - border-bottom: 1px solid #ddd; - margin-bottom: 10px; -} - .recline-graph .editor-hide-info p { display: none; } diff --git a/src/view-graph.js b/src/view-graph.js index c10c31a5..78eb12d8 100644 --- a/src/view-graph.js +++ b/src/view-graph.js @@ -27,13 +27,6 @@ my.Graph = Backbone.View.extend({ template: ' \
\ -
\ -

Help »

\ -

To create a chart select a column (group) to use as the x-axis \ - then another column (Series A) to plot against it.

\ -

You can add add \ - additional series by clicking the "Add series" button

\ -
\
\
\ \ @@ -93,8 +86,7 @@ my.Graph = Backbone.View.extend({ events: { 'change form select': 'onEditorSubmit', 'click .editor-add': '_onAddSeries', - 'click .action-remove-series': 'removeSeries', - 'click .action-toggle-help': 'toggleHelp' + 'click .action-remove-series': 'removeSeries' }, initialize: function(options) { @@ -401,11 +393,7 @@ my.Graph = Backbone.View.extend({ var $el = $(e.target); $el.parent().parent().remove(); this.onEditorSubmit(); - }, - - toggleHelp: function() { - this.el.find('.editor-info').toggleClass('editor-hide-info'); - }, + } }); })(jQuery, recline.View);