diff options
author | wout <wout@impinc.co.uk> | 2013-01-09 18:25:43 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-01-09 18:25:43 +0100 |
commit | 145f7e09035c8503ec7b408fd7313f09f54d5bd8 (patch) | |
tree | c067594d0650eab801f4e74f8129b78d4ff88d21 /dist/svg.js | |
parent | 64fadd1e184b104959d6681e61da031f7bd1b832 (diff) | |
download | svg.js-145f7e09035c8503ec7b408fd7313f09f54d5bd8.tar.gz svg.js-145f7e09035c8503ec7b408fd7313f09f54d5bd8.zip |
Note in fx.js
Diffstat (limited to 'dist/svg.js')
-rw-r--r-- | dist/svg.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/svg.js b/dist/svg.js index 57459fa..7ef0971 100644 --- a/dist/svg.js +++ b/dist/svg.js @@ -1,4 +1,4 @@ -/* svg.js v0.1-73-gc4dc580 - svg container element fx event group arrange defs mask pattern gradient doc shape wrap rect ellipse poly path image text nested sugar - svgjs.com/license */ +/* svg.js v0.1-77-g64fadd1 - svg container element fx event group arrange defs mask pattern gradient doc shape wrap rect ellipse poly path image text nested sugar - svgjs.com/license */ (function() { this.svg = function(element) { @@ -425,6 +425,7 @@ /* start animation */ this.interval = setInterval(function(){ + // This code was borrowed from the emile.js micro framework by Thomas Fuchs, aka MadRobby. var index, time = (new Date).getTime(), pos = time > finish ? 1 : (time - start) / duration; @@ -642,7 +643,6 @@ // rect.animate(1500, '>').move(200, 300).after(function() { // this.fill({ color: '#f06' }); // }); - [ 'click', |