Removed debug code from canvas renderer.

This commit is contained in:
florian 2011-06-20 10:17:40 +02:00
parent c8a105fbee
commit a316351364

View File

@ -7,7 +7,7 @@ L.Path.Canvas = (function() {
return !!document.createElement('canvas').getContext; 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: { statics: {
CLIP_PADDING: 0.02 CLIP_PADDING: 0.02
}, },