From 132fdd8ce75927af73c095f0e7d5ff8fe7653629 Mon Sep 17 00:00:00 2001 From: "olau@iola.dk" Date: Tue, 4 Dec 2007 11:03:47 +0000 Subject: [PATCH] Fixed semicolon problems git-svn-id: https://flot.googlecode.com/svn/trunk@7 1e0a6537-2640-0410-bfb7-f154510ff394 --- excanvas.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/excanvas.js b/excanvas.js index 79f3af7..7914cb9 100644 --- a/excanvas.js +++ b/excanvas.js @@ -288,7 +288,7 @@ if (!window.CanvasRenderingContext2D) { this.element_ = el; this.arcScaleX_ = 1; this.arcScaleY_ = 1; - }; + } var contextPrototype = CanvasRenderingContext2D_.prototype; contextPrototype.clearRect = function() { @@ -501,9 +501,9 @@ if (!window.CanvasRenderingContext2D) { vmlStr.push("padding:0 ", mr(max.x / Z), "px ", mr(max.y / Z), "px 0;filter:progid:DXImageTransform.Microsoft.Matrix(", - filter.join(""), ", sizingmethod='clip');") + filter.join(""), ", sizingmethod='clip');"); } else { - vmlStr.push("top:", mr(d.y / Z), "px;left:", mr(d.x / Z), "px;") + vmlStr.push("top:", mr(d.y / Z), "px;left:", mr(d.x / Z), "px;"); } vmlStr.push(' ">' , @@ -681,7 +681,7 @@ if (!window.CanvasRenderingContext2D) { contextPrototype.fill = function() { this.stroke(true); - } + }; contextPrototype.closePath = function() { this.currentPath_.push({type: "close"});