]> source.dussan.org Git - svg.js.git/commitdiff
Fixed plot poly with array of points 20/head
authorRob Walch <rwalch@gmail.com>
Mon, 8 Apr 2013 17:15:49 +0000 (14:15 -0300)
committerRob Walch <rwalch@gmail.com>
Mon, 8 Apr 2013 17:15:49 +0000 (14:15 -0300)
src/poly.js

index 5c458f008e603286b725b6372f18af022305c324..36492dc535aceb32faf4ffdb99fd06e45d29238c 100644 (file)
@@ -26,10 +26,10 @@ SVG.extend(SVG.Polyline, SVG.Polygon, {
       for (i = 0, l = p.length; i < l; i++)
         points.push(p[i].join(','))
       
-      p = points.length == 0 ? points.join(' ') : '0,0'
+      p = points.length > 0 ? points.join(' ') : '0,0'
     }
     
     return this.attr('points', p || '0,0')
   }
   
-}) 
\ No newline at end of file
+})