summaryrefslogtreecommitdiffstats
path: root/src/doc.js
diff options
context:
space:
mode:
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