diff options
author | wout <wout@impinc.co.uk> | 2013-02-27 20:36:17 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-02-27 20:36:17 +0100 |
commit | e9fa07a7b33b8f19c0690b0fc3df2f57a404d224 (patch) | |
tree | fe7af0f65d7a0b4b1177a225e3ac885c62fa4bca /src/nested.js | |
parent | 968406ea2f45e756f081268370703c522a929cfb (diff) | |
download | svg.js-e9fa07a7b33b8f19c0690b0fc3df2f57a404d224.tar.gz svg.js-e9fa07a7b33b8f19c0690b0fc3df2f57a404d224.zip |
Bumped to v0.7 with reworked id sequence, attr nullifier, and various other fixes
Diffstat (limited to 'src/nested.js')
-rw-r--r-- | src/nested.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nested.js b/src/nested.js index 45820f2..9d4401c 100644 --- a/src/nested.js +++ b/src/nested.js @@ -1,6 +1,7 @@ SVG.Nested = function() { this.constructor.call(this, SVG.create('svg')) - this.attr('overflow', 'visible') + + this.attr('style', 'overflow:visible') } // Inherit from SVG.Container |