]> source.dussan.org Git - svg.js.git/commitdiff
Updated README
authorwout <wout@impinc.co.uk>
Sun, 30 Dec 2012 17:54:03 +0000 (18:54 +0100)
committerwout <wout@impinc.co.uk>
Sun, 30 Dec 2012 17:54:03 +0000 (18:54 +0100)
README.md

index 0d23a3f0c5bd33646becc024f611c2e1bc81678b..6064961b9c71b0f50a10aee183cc118a8b2a67c5 100644 (file)
--- a/README.md
+++ b/README.md
@@ -407,9 +407,7 @@ All usual events are accessible on elements:
 
 ```javascript
 rect.click(function() {
-  
   this.fill({ color: '#f06' });
-  
 });
 ```
 
@@ -422,11 +420,9 @@ Svg.js has a modular structure. It is very easy to add you own methods at differ
 
 ```javascript
 SVG.extend(SVG.Shape, {
-  
   paintRed: function() {
     return this.fill({ color: 'red' });
   }
-  
 });
 ```
 
@@ -434,11 +430,9 @@ Now all shapes will have the paintRed method available. Say we want to have the
 
 ```javascript
 SVG.extend(SVG.Ellipse, {
-  
   paintRed: function() {
     return this.fill({ color: 'orangered' });
   }
-  
 });
 
 ```
@@ -451,7 +445,6 @@ The SVG document can be extended by using:
 ```javascript
 
 SVG.extend(SVG.Doc, {
-  
   paintAllPink: function() {
     var children = this.children();
     
@@ -461,7 +454,6 @@ SVG.extend(SVG.Doc, {
     
     return this;
   }
-  
 });
 ```