mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Add missing semicolons.
This commit is contained in:
parent
72bd751857
commit
6213c0f1ee
|
@ -77,12 +77,11 @@ Prometheus.Graph.prototype.initialize = function() {
|
||||||
self.evalStats = graphWrapper.find(".eval_stats");
|
self.evalStats = graphWrapper.find(".eval_stats");
|
||||||
|
|
||||||
self.endDate = graphWrapper.find("input[name=end_input]");
|
self.endDate = graphWrapper.find("input[name=end_input]");
|
||||||
console.log(self.options)
|
|
||||||
if (self.options["end_input"]) {
|
if (self.options["end_input"]) {
|
||||||
self.endDate.appendDtpicker({"current": self.options["end_input"]})
|
self.endDate.appendDtpicker({"current": self.options["end_input"]});
|
||||||
} else {
|
} else {
|
||||||
self.endDate.appendDtpicker();
|
self.endDate.appendDtpicker();
|
||||||
self.endDate.val("")
|
self.endDate.val("");
|
||||||
}
|
}
|
||||||
self.endDate.change(function() { self.submitQuery() });
|
self.endDate.change(function() { self.submitQuery() });
|
||||||
|
|
||||||
|
@ -194,30 +193,30 @@ Prometheus.Graph.prototype.decreaseRange = function() {
|
||||||
};
|
};
|
||||||
|
|
||||||
Prometheus.Graph.prototype.getEndDate = function() {
|
Prometheus.Graph.prototype.getEndDate = function() {
|
||||||
var self = this
|
var self = this;
|
||||||
if (!self.endDate || !self.endDate.val()) {
|
if (!self.endDate || !self.endDate.val()) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return new Date(self.endDate.val()).getTime()
|
return new Date(self.endDate.val()).getTime();
|
||||||
};
|
};
|
||||||
|
|
||||||
Prometheus.Graph.prototype.getOrSetEndDate = function() {
|
Prometheus.Graph.prototype.getOrSetEndDate = function() {
|
||||||
var self = this
|
var self = this;
|
||||||
var date = self.getEndDate();
|
var date = self.getEndDate();
|
||||||
if (date) {
|
if (date) {
|
||||||
return date
|
return date;
|
||||||
}
|
}
|
||||||
date = new Date()
|
date = new Date();
|
||||||
self.setEndDate(date)
|
self.setEndDate(date);
|
||||||
return date
|
return date;
|
||||||
}
|
}
|
||||||
|
|
||||||
Prometheus.Graph.prototype.setEndDate = function(date) {
|
Prometheus.Graph.prototype.setEndDate = function(date) {
|
||||||
var self = this;
|
var self = this;
|
||||||
dateString = date.getFullYear() + '-' + (date.getMonth()+1) + '-' + date.getDate() + ' ' +
|
dateString = date.getFullYear() + '-' + (date.getMonth()+1) + '-' + date.getDate() + ' ' +
|
||||||
date.getHours() + ':' + date.getMinutes()
|
date.getHours() + ':' + date.getMinutes();
|
||||||
self.endDate.val("")
|
self.endDate.val("");
|
||||||
self.endDate.appendDtpicker({"current": dateString})
|
self.endDate.appendDtpicker({"current": dateString});
|
||||||
};
|
};
|
||||||
|
|
||||||
Prometheus.Graph.prototype.increaseEnd = function() {
|
Prometheus.Graph.prototype.increaseEnd = function() {
|
||||||
|
@ -291,7 +290,7 @@ Prometheus.Graph.prototype.parseValue = function(value) {
|
||||||
if (value == "NaN" || value == "Inf" || value == "-Inf") {
|
if (value == "NaN" || value == "Inf" || value == "-Inf") {
|
||||||
return 0; // TODO: what should we really do here?
|
return 0; // TODO: what should we really do here?
|
||||||
} else {
|
} else {
|
||||||
return parseFloat(value)
|
return parseFloat(value);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue