summaryrefslogtreecommitdiffstats
path: root/src/doc.js
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2013-02-27 20:36:17 +0100
committerwout <wout@impinc.co.uk>2013-02-27 20:36:17 +0100
commite9fa07a7b33b8f19c0690b0fc3df2f57a404d224 (patch)
treefe7af0f65d7a0b4b1177a225e3ac885c62fa4bca /src/doc.js
parent968406ea2f45e756f081268370703c522a929cfb (diff)
downloadsvg.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.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/doc.js b/src/doc.js
index ac314f3..a2db3a4 100644
--- a/src/doc.js
+++ b/src/doc.js
@@ -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