Add some missing context.restore() calls
authorDan Vanderkam <dan@dygraphs.com>
Thu, 8 Mar 2012 17:39:48 +0000 (12:39 -0500)
committerDan Vanderkam <dan@dygraphs.com>
Thu, 8 Mar 2012 17:39:48 +0000 (12:39 -0500)
dygraph-canvas.js

index 6e15a58..03bc5e3 100644 (file)
@@ -186,6 +186,7 @@ DygraphCanvasRenderer.prototype.render = function() {
       ctx.closePath();
       ctx.stroke();
     }
+    ctx.restore();
   }
 
   if (this.attr_('drawXGrid')) {
@@ -202,6 +203,7 @@ DygraphCanvasRenderer.prototype.render = function() {
       ctx.closePath();
       ctx.stroke();
     }
+    ctx.restore();
   }
 
   // Do the ordinary rendering, as before