summaryrefslogtreecommitdiffstats
path: root/src/svg.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/svg.js')
-rw-r--r--src/svg.js12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/svg.js b/src/svg.js
index 409aa37..9306232 100644
--- a/src/svg.js
+++ b/src/svg.js
@@ -26,16 +26,8 @@ this.SVG = {
},
// Method for extending objects
extend: function(object, module) {
- /* extend all container modules */
- if (object == SVG.Container)
- ('Clip Defs Doc Gradient Group Mask Nested Pattern').split(' ').forEach(function(m) {
- if (SVG[m])
- SVG.extend(SVG[m], module);
- });
- /* extend given module */
- else
- for (var key in module)
- object.prototype[key] = module[key];
+ for (var key in module)
+ object.prototype[key] = module[key];
}
}; \ No newline at end of file