Fix graph resize bug when no graph exists.
This commit is contained in:
parent
9f07f8677a
commit
c91c100102
|
@ -482,10 +482,12 @@ Prometheus.Graph.prototype.updateGraph = function(reloadGraph) {
|
||||||
|
|
||||||
Prometheus.Graph.prototype.resizeGraph = function() {
|
Prometheus.Graph.prototype.resizeGraph = function() {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
if (self.rickshawGraph != null) {
|
||||||
self.rickshawGraph.configure({
|
self.rickshawGraph.configure({
|
||||||
width: Math.max(self.graph.innerWidth() - 80, 200),
|
width: Math.max(self.graph.innerWidth() - 80, 200),
|
||||||
});
|
});
|
||||||
self.rickshawGraph.render();
|
self.rickshawGraph.render();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Prometheus.Graph.prototype.handleGraphResponse = function(json, textStatus) {
|
Prometheus.Graph.prototype.handleGraphResponse = function(json, textStatus) {
|
||||||
|
|
Loading…
Reference in New Issue