summaryrefslogtreecommitdiffstats
path: root/src/default.js
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2015-11-06 22:28:20 +0100
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2015-11-06 22:28:20 +0100
commit3cb00000586340276998144d202d7af35c47ae36 (patch)
tree6b431cf16f05efeef63e145d1d1dc6aaceede4fb /src/default.js
parent2702ceb26d3021720f3ff979bcf5f46fc65699e9 (diff)
downloadsvg.js-3cb00000586340276998144d202d7af35c47ae36.tar.gz
svg.js-3cb00000586340276998144d202d7af35c47ae36.zip
tab to space, block comments to line comments
Diffstat (limited to 'src/default.js')
-rw-r--r--src/default.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/default.js b/src/default.js
index eb3d504..d371ca0 100644
--- a/src/default.js
+++ b/src/default.js
@@ -2,7 +2,7 @@
SVG.defaults = {
// Default attribute values
attrs: {
- /* fill and stroke */
+ // fill and stroke
'fill-opacity': 1
, 'stroke-opacity': 1
, 'stroke-width': 0
@@ -11,23 +11,23 @@ SVG.defaults = {
, fill: '#000000'
, stroke: '#000000'
, opacity: 1
- /* position */
+ // position
, x: 0
, y: 0
, cx: 0
, cy: 0
- /* size */
+ // size
, width: 0
, height: 0
- /* radius */
+ // radius
, r: 0
, rx: 0
, ry: 0
- /* gradient */
+ // gradient
, offset: 0
, 'stop-opacity': 1
, 'stop-color': '#000000'
- /* text */
+ // text
, 'font-size': 16
, 'font-family': 'Helvetica, Arial, sans-serif'
, 'text-anchor': 'start'