diff options
author | wout <wout@impinc.co.uk> | 2012-12-31 12:21:45 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2012-12-31 12:21:45 +0100 |
commit | 9f622f7b160fb977a4354eb0f775d4b53a2f7443 (patch) | |
tree | 120ab0acc0e073b89a9f68594c36d8a1501bdc20 /src/svg.js | |
parent | 7d3e4c43a64cdb9ce19b71d8dc1783c0bc031d91 (diff) | |
download | svg.js-9f622f7b160fb977a4354eb0f775d4b53a2f7443.tar.gz svg.js-9f622f7b160fb977a4354eb0f775d4b53a2f7443.zip |
Added mask.js
Diffstat (limited to 'src/svg.js')
-rw-r--r-- | src/svg.js | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,8 +1,11 @@ this.SVG = { // define default namespaces - ns: 'http://www.w3.org/2000/svg', - xlink: 'http://www.w3.org/1999/xlink', + ns: 'http://www.w3.org/2000/svg', + xlink: 'http://www.w3.org/1999/xlink', + + // initialize defs id sequence + did: 0, // method for element creation create: function(e) { |