Neurotic cleanups to graph.js

This commit is contained in:
Julius Volz 2016-08-05 23:35:11 +02:00
parent 70490fe568
commit d770783777
2 changed files with 77 additions and 77 deletions

File diff suppressed because one or more lines are too long

View file

@ -8,7 +8,7 @@ Handlebars.registerHelper('pathPrefix', function() { return PATH_PREFIX; });
Prometheus.Graph = function(element, options) { Prometheus.Graph = function(element, options) {
this.el = element; this.el = element;
this.graphHtml = null; this.graphHTML = null;
this.options = options; this.options = options;
this.changeHandler = null; this.changeHandler = null;
this.rickshawGraph = null; this.rickshawGraph = null;
@ -46,8 +46,8 @@ Prometheus.Graph.prototype.initialize = function() {
// Draw graph controls and container from Handlebars template. // Draw graph controls and container from Handlebars template.
self.graphHtml = $(graphTemplate(self.options)); self.graphHTML = $(graphTemplate(self.options));
self.el.append(self.graphHtml); self.el.append(self.graphHTML);
// Get references to all the interesting elements in the graph container and // Get references to all the interesting elements in the graph container and
// bind event handlers. // bind event handlers.
@ -621,7 +621,7 @@ Prometheus.Graph.prototype.handleConsoleResponse = function(data, textStatus) {
Prometheus.Graph.prototype.remove = function() { Prometheus.Graph.prototype.remove = function() {
var self = this; var self = this;
$(self.graphHtml).remove(); $(self.graphHTML).remove();
graphs = graphs.filter(function(e) {return e !== self}); graphs = graphs.filter(function(e) {return e !== self});
storeGraphOptionsInURL(); storeGraphOptionsInURL();
}; };