]> source.dussan.org Git - svg.js.git/commitdiff
Updated README
authorwout <wout@impinc.co.uk>
Sun, 6 Jan 2013 19:47:29 +0000 (20:47 +0100)
committerwout <wout@impinc.co.uk>
Sun, 6 Jan 2013 19:47:29 +0000 (20:47 +0100)
README.md
dist/svg.js

index 1245e46e4cd845ff8ba2957f81add73ec976d86a..b184c1ced89f709cd1bff2ca66b4054f366ef406 100644 (file)
--- a/README.md
+++ b/README.md
@@ -2,9 +2,9 @@
 
 A lightweight library for manipulating and animating SVG.
 
-Svg.js is licensed under the terms of the MIT License.
+Svg.js has no dependencies and aims to be under 5k gzipped. The base library is 2.7k gzipped, with all bells and whistles about 4.6k.
 
-The base library is 2.7k gzipped, with all bells and whistles about 4.6k.
+Svg.js is licensed under the terms of the MIT License.
 
 See [svgjs.com](http://svgjs.com) for an introduction, [documentation](http://svgjs.com/docs) and [some action](http://svgjs.com/test).
 
index e77e5e927d4a6ebb008023e27287bbf1fec0efc4..cca11d10af8a65a5fdabe8b14b7271572cee88b2 100644 (file)
     xlink: 'http://www.w3.org/1999/xlink',
     // Defs id sequence
     did: 0,
-    // Method for element creation
+    // Function for element creation
     create: function(element) {
       return document.createElementNS(this.ns, element);
     },
-    // Method for extending objects
+    // Function for extending objects
     extend: function(object, module) {
       for (var key in module)
         object.prototype[key] = module[key];
     }
-    
   };
 
   SVG.Container = {