Reformat and add semicolons to graph.js

pull/133/head
Bernerd Schaefer 12 years ago
parent 43dc377bee
commit 953334a4f7

@ -292,10 +292,10 @@ Prometheus.Graph.prototype.renderLabels = function(labels) {
var labelStrings = []; var labelStrings = [];
for (label in labels) { for (label in labels) {
if (label != "name") { if (label != "name") {
labelStrings.push("<strong>"+label + "</strong>: " + labels[label]); labelStrings.push("<strong>" + label + "</strong>: " + labels[label]);
} }
} }
return labels = "<div class='labels'>"+ labelStrings.join("<br>") + "</div>"; return labels = "<div class='labels'>" + labelStrings.join("<br>") + "</div>";
} }
Prometheus.Graph.prototype.metricToTsName = function(labels) { Prometheus.Graph.prototype.metricToTsName = function(labels) {
@ -384,17 +384,17 @@ Prometheus.Graph.prototype.updateGraph = function(reloadGraph) {
jQuery(".x_label", element).each(function() { jQuery(".x_label", element).each(function() {
if ($(this).outerWidth() + element.offset().left > width) { if ($(this).outerWidth() + element.offset().left > width) {
$(this).addClass("flipped") $(this).addClass("flipped");
} else { } else {
$(this).removeClass("flipped") $(this).removeClass("flipped");
} }
}) })
jQuery(".item", element).each(function() { jQuery(".item", element).each(function() {
if ($(this).outerWidth() + element.offset().left > width) { if ($(this).outerWidth() + element.offset().left > width) {
$(this).addClass("flipped") $(this).addClass("flipped");
} else { } else {
$(this).removeClass("flipped") $(this).removeClass("flipped");
} }
}) })
}, },

Loading…
Cancel
Save