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/doc.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/doc.js')
-rw-r--r-- | src/doc.js | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -10,13 +10,13 @@ SVG.Doc = function(element) { element /* set svg element attributes and create the <defs> node */ - this. - attr({ xmlns: SVG.ns, version: '1.1', width: '100%', height: '100%' }). - attr('xlink', SVG.xlink, SVG.ns). - defs() + this + .attr({ xmlns: SVG.ns, version: '1.1', width: '100%', height: '100%' }) + .attr('xlink', SVG.xlink, SVG.ns) + .defs() /* ensure correct rendering for safari */ - this.stage(); + this.stage() } // Inherits from SVG.Container |