diff options
author | wout <wout@impinc.co.uk> | 2013-03-30 18:08:09 +0000 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-03-30 18:08:09 +0000 |
commit | f5f60d2383c99667849167af51aaf7734c678ca6 (patch) | |
tree | 811ae73eb0e9bc764401218050c96fea20054f8d /src | |
parent | 87f9985c2d2d3ec3a732613b02d281084d096d1f (diff) | |
download | svg.js-f5f60d2383c99667849167af51aaf7734c678ca6.tar.gz svg.js-f5f60d2383c99667849167af51aaf7734c678ca6.zip |
Passing attribute name and value in rebuild() method
Diffstat (limited to 'src')
-rw-r--r-- | src/element.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/element.js b/src/element.js index 61f77ff..9f6304f 100644 --- a/src/element.js +++ b/src/element.js @@ -170,7 +170,7 @@ SVG.extend(SVG.Element, { /* rebuild if required */ if (this.rebuild) - this.rebuild() + this.rebuild(a, v) } } |