From 2de7166c125ecb7bbfe6a0c815887ee6e4a475b6 Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Thu, 9 Aug 2012 14:24:47 -0400 Subject: [PATCH] remove trailing comma that was breaking IE --- dygraph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dygraph.js b/dygraph.js index bb74cdc..cec7c20 100644 --- a/dygraph.js +++ b/dygraph.js @@ -2384,7 +2384,7 @@ Dygraph.prototype.renderGraph_ = function(is_initial_draw) { var e = { canvas: this.hidden_, - drawingContext: this.hidden_ctx_, + drawingContext: this.hidden_ctx_ }; this.cascadeEvents_('willDrawChart', e); this.plotter_.render(); -- 2.7.4