diff options
author | wout <wout@impinc.co.uk> | 2013-01-29 13:55:53 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-01-29 13:55:53 +0100 |
commit | 610e40c62cfbd704db39c1516320de5cf61e36bd (patch) | |
tree | 9e64174bb981e748b958db1b61e65c92ecefda2c /src/svg.js | |
parent | 293ef89f8d00d1623d8d2edd79d3af7bc765c002 (diff) | |
download | svg.js-610e40c62cfbd704db39c1516320de5cf61e36bd.tar.gz svg.js-610e40c62cfbd704db39c1516320de5cf61e36bd.zip |
Fix in arrange module
Diffstat (limited to 'src/svg.js')
-rw-r--r-- | src/svg.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ this.SVG = { // Method for extending objects extend: function(object, module) { /* extend all container modules */ - if (object === SVG.Container) + if (object == SVG.Container) ('Clip Defs Doc Gradient Group Mask Nested Pattern').split(' ').forEach(function(m) { if (SVG[m]) SVG.extend(SVG[m], module); |