diff options
author | wout <wout@impinc.co.uk> | 2013-03-09 22:28:47 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-03-09 22:28:47 +0100 |
commit | 6c6c82ed59533f44f8754b69d47e3b11cd6dd129 (patch) | |
tree | adaef53d8970acb228fe14d490c532f1baabbb13 /src/poly.js | |
parent | 16c4a146ee97fa43e0c456fe801490351e551e96 (diff) | |
download | svg.js-6c6c82ed59533f44f8754b69d47e3b11cd6dd129.tar.gz svg.js-6c6c82ed59533f44f8754b69d47e3b11cd6dd129.zip |
Bumped to v0.9, added better style management, text support and extended animation functionality0.10
Diffstat (limited to 'src/poly.js')
-rw-r--r-- | src/poly.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/poly.js b/src/poly.js index 9e89570..ce5a70c 100644 --- a/src/poly.js +++ b/src/poly.js @@ -12,7 +12,7 @@ SVG.Polyline = function() { } // Inherit from SVG.Shape -SVG.Polyline.prototype = new SVG.Shape() +SVG.Polyline.prototype = new SVG.Shape // Add polygon-specific functions SVG.extend(SVG.Polyline, SVG.Poly) @@ -22,7 +22,7 @@ SVG.Polygon = function() { } // Inherit from SVG.Shape -SVG.Polygon.prototype = new SVG.Shape() +SVG.Polygon.prototype = new SVG.Shape // Add polygon-specific functions SVG.extend(SVG.Polygon, SVG.Poly)
\ No newline at end of file |