From a316351364699007dd22049f0d13aadf3ac1eaa8 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 20 Jun 2011 10:17:40 +0200 Subject: [PATCH] Removed debug code from canvas renderer. --- src/layer/vector/Path.Canvas.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layer/vector/Path.Canvas.js b/src/layer/vector/Path.Canvas.js index f2adb28f..c8e14f76 100644 --- a/src/layer/vector/Path.Canvas.js +++ b/src/layer/vector/Path.Canvas.js @@ -7,7 +7,7 @@ L.Path.Canvas = (function() { return !!document.createElement('canvas').getContext; })(); -L.Path = L.Path.SVG && 1 < 0? L.Path : !L.Path.Canvas ? L.Path.VML : L.Path.extend({ +L.Path = L.Path.SVG ? L.Path : !L.Path.Canvas ? L.Path.VML : L.Path.extend({ statics: { CLIP_PADDING: 0.02 },