mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-26 22:19:40 -08:00
Neurotic cleanups to graph.js
This commit is contained in:
parent
70490fe568
commit
d770783777
File diff suppressed because one or more lines are too long
|
@ -8,7 +8,7 @@ Handlebars.registerHelper('pathPrefix', function() { return PATH_PREFIX; });
|
|||
|
||||
Prometheus.Graph = function(element, options) {
|
||||
this.el = element;
|
||||
this.graphHtml = null;
|
||||
this.graphHTML = null;
|
||||
this.options = options;
|
||||
this.changeHandler = null;
|
||||
this.rickshawGraph = null;
|
||||
|
@ -46,8 +46,8 @@ Prometheus.Graph.prototype.initialize = function() {
|
|||
|
||||
// Draw graph controls and container from Handlebars template.
|
||||
|
||||
self.graphHtml = $(graphTemplate(self.options));
|
||||
self.el.append(self.graphHtml);
|
||||
self.graphHTML = $(graphTemplate(self.options));
|
||||
self.el.append(self.graphHTML);
|
||||
|
||||
// Get references to all the interesting elements in the graph container and
|
||||
// bind event handlers.
|
||||
|
@ -621,7 +621,7 @@ Prometheus.Graph.prototype.handleConsoleResponse = function(data, textStatus) {
|
|||
|
||||
Prometheus.Graph.prototype.remove = function() {
|
||||
var self = this;
|
||||
$(self.graphHtml).remove();
|
||||
$(self.graphHTML).remove();
|
||||
graphs = graphs.filter(function(e) {return e !== self});
|
||||
storeGraphOptionsInURL();
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue