diff options
author | wout <wout@impinc.co.uk> | 2013-01-05 16:52:14 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-01-05 16:52:14 +0100 |
commit | eb58a52f9ad219331961119bf114480a58f7b17c (patch) | |
tree | 1acd37aa3d29be76dd5c8f103ff94d266dac81ad /src/svg.js | |
parent | b40093fbfb9cfa0e8b9f67a2db18ea0b68947ef4 (diff) | |
download | svg.js-eb58a52f9ad219331961119bf114480a58f7b17c.tar.gz svg.js-eb58a52f9ad219331961119bf114480a58f7b17c.zip |
Removed temp wrapper in safari bug fix
Diffstat (limited to 'src/svg.js')
-rw-r--r-- | src/svg.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,8 +7,8 @@ // Shortcut for creating a svg document -this.svg = function(e) { - return new SVG.Doc(e); +this.svg = function(element) { + return new SVG.Doc(element); }; // The main wrapping element |