mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Fix variable leak
This commit is contained in:
parent
0cb9c50e8f
commit
7b91e41131
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ module.exports = function(paper) {
|
|||
frameDuration = 1 / options.fps,
|
||||
startTime = Date.now(),
|
||||
lastTime = startTime,
|
||||
padding = options.padding || ((options.amount - 1) + '').length;
|
||||
padding = options.padding || ((options.amount - 1) + '').length,
|
||||
paddedStr = Array(padding + 1).join('0');
|
||||
|
||||
// Start exporting frames by exporting the first frame:
|
||||
|
|
Loading…
Reference in a new issue