aboutsummaryrefslogtreecommitdiffstats
path: root/src/element.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/element.js')
-rw-r--r--src/element.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/element.js b/src/element.js
index e7161c0..c23ea49 100644
--- a/src/element.js
+++ b/src/element.js
@@ -33,6 +33,7 @@ SVG.Element = function Element(node) {
skewX: 0,
skewY: 0
};
+
};
//
@@ -71,6 +72,10 @@ SVG.extend(SVG.Element, {
clone.child.trans = this.child.trans;
clone.child.attr(this.child.attrs).transform({});
+ /* re-plot shape */
+ if (clone.plot)
+ clone.plot(this.child.attrs[this.child instanceof SVG.Path ? 'd' : 'points']);
+
} else {
var name = this.node.nodeName;
@@ -104,6 +109,10 @@ SVG.extend(SVG.Element, {
doc: function() {
return this._parent(SVG.Doc);
},
+ // Get parent nested document
+ nested: function() {
+ return this._parent(SVG.Nested);
+ },
// Set svg element attribute
attr: function(a, v, n) {
if (arguments.length < 2) {