diff options
Diffstat (limited to 'src/circle.js')
-rw-r--r-- | src/circle.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/circle.js b/src/circle.js index 890d1d3..9576568 100644 --- a/src/circle.js +++ b/src/circle.js @@ -7,7 +7,7 @@ SVG.Circle = function Circle() { SVG.Circle.prototype = new SVG.Shape(); // Add circle-specific functions -SVG.Utils.merge(SVG.Circle, { +SVG.extend(SVG.Circle, { // custom move function move: function(x, y) { |