Fix graph resize bug when no graph exists.

This commit is contained in:
Julius Volz 2013-07-24 02:20:42 +02:00
parent 9f07f8677a
commit c91c100102
1 changed files with 6 additions and 4 deletions

View File

@ -482,11 +482,13 @@ Prometheus.Graph.prototype.updateGraph = function(reloadGraph) {
Prometheus.Graph.prototype.resizeGraph = function() {
var self = this;
if (self.rickshawGraph != null) {
self.rickshawGraph.configure({
width: Math.max(self.graph.innerWidth() - 80, 200),
});
self.rickshawGraph.render();
}
}
Prometheus.Graph.prototype.handleGraphResponse = function(json, textStatus) {
var self = this