summaryrefslogtreecommitdiffstats
path: root/src/svg.js
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2013-01-29 13:55:53 +0100
committerwout <wout@impinc.co.uk>2013-01-29 13:55:53 +0100
commit610e40c62cfbd704db39c1516320de5cf61e36bd (patch)
tree9e64174bb981e748b958db1b61e65c92ecefda2c /src/svg.js
parent293ef89f8d00d1623d8d2edd79d3af7bc765c002 (diff)
downloadsvg.js-610e40c62cfbd704db39c1516320de5cf61e36bd.tar.gz
svg.js-610e40c62cfbd704db39c1516320de5cf61e36bd.zip
Fix in arrange module
Diffstat (limited to 'src/svg.js')
-rw-r--r--src/svg.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/svg.js b/src/svg.js
index d0e4188..409aa37 100644
--- a/src/svg.js
+++ b/src/svg.js
@@ -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);