Commit 132fdd8c authored by olau@iola.dk's avatar olau@iola.dk

Fixed semicolon problems

git-svn-id: https://flot.googlecode.com/svn/trunk@7 1e0a6537-2640-0410-bfb7-f154510ff394
parent a709b3d1
...@@ -288,7 +288,7 @@ if (!window.CanvasRenderingContext2D) { ...@@ -288,7 +288,7 @@ if (!window.CanvasRenderingContext2D) {
this.element_ = el; this.element_ = el;
this.arcScaleX_ = 1; this.arcScaleX_ = 1;
this.arcScaleY_ = 1; this.arcScaleY_ = 1;
}; }
var contextPrototype = CanvasRenderingContext2D_.prototype; var contextPrototype = CanvasRenderingContext2D_.prototype;
contextPrototype.clearRect = function() { contextPrototype.clearRect = function() {
...@@ -501,9 +501,9 @@ if (!window.CanvasRenderingContext2D) { ...@@ -501,9 +501,9 @@ if (!window.CanvasRenderingContext2D) {
vmlStr.push("padding:0 ", mr(max.x / Z), "px ", mr(max.y / Z), vmlStr.push("padding:0 ", mr(max.x / Z), "px ", mr(max.y / Z),
"px 0;filter:progid:DXImageTransform.Microsoft.Matrix(", "px 0;filter:progid:DXImageTransform.Microsoft.Matrix(",
filter.join(""), ", sizingmethod='clip');") filter.join(""), ", sizingmethod='clip');");
} else { } 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(' ">' , vmlStr.push(' ">' ,
...@@ -681,7 +681,7 @@ if (!window.CanvasRenderingContext2D) { ...@@ -681,7 +681,7 @@ if (!window.CanvasRenderingContext2D) {
contextPrototype.fill = function() { contextPrototype.fill = function() {
this.stroke(true); this.stroke(true);
} };
contextPrototype.closePath = function() { contextPrototype.closePath = function() {
this.currentPath_.push({type: "close"}); this.currentPath_.push({type: "close"});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment