]> source.dussan.org Git - svg.js.git/commitdiff
remove the use of keyword 'default' 24/head
authorRob Walch <rwalch@gmail.com>
Sun, 14 Apr 2013 16:00:33 +0000 (12:00 -0400)
committerRob Walch <rwalch@gmail.com>
Sun, 14 Apr 2013 16:00:33 +0000 (12:00 -0400)
src/default.js
src/element.js

index 4efc2268f5c5c6a88b42ff1c7b63f355df9c1a2c..1dbe9c03b46f87f244c2bb5b9be2dd45beb11f7d 100644 (file)
@@ -1,5 +1,5 @@
 
-SVG.default = {
+SVG.defaults = {
   // Default matrix
   matrix:       '1,0,0,1,0,0'
   
index bad57fad47bd1fc55d1728280a75f0071beb2cfb..83e106c18556bc0dcf2dd6cb07beaa3fb996124d 100644 (file)
@@ -4,13 +4,13 @@
 //
 SVG.Element = function(node) {
   /* make stroke value accessible dynamically */
-  this._stroke = SVG.default.attrs.stroke
+  this._stroke = SVG.defaults.attrs.stroke
   
   /* initialize style store */
   this.styles = {}
   
   /* initialize transformation store with defaults */
-  this.trans = SVG.default.trans()
+  this.trans = SVG.defaults.trans()
   
   /* keep reference to the element node */
   if (this.node = node) {
@@ -130,7 +130,7 @@ SVG.extend(SVG.Element, {
       } else {
         v = this.node.getAttribute(a)
         return v == null ? 
-          SVG.default.attrs[a] :
+          SVG.defaults.attrs[a] :
         SVG.regex.test(v, 'isNumber') ?
           parseFloat(v) : v
       }
@@ -213,7 +213,7 @@ SVG.extend(SVG.Element, {
     o = this.trans
     
     /* add matrix */
-    if (o.matrix != SVG.default.matrix)
+    if (o.matrix != SVG.defaults.matrix)
       transform.push('matrix(' + o.matrix + ')')
     
     /* add rotation */