You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ok, so I'm no guru with jQuery, but the canvas 'finishes' at line 441 - i.e. where it say's 'return':
window.setImmediate(function loop() {
if (i >= $this.words.length) {
return;
}
$this.putWord($this.words[ i ][ 0 ], $this.words[ i ][ 1 ], $this.words[ i ][ 2 ], $this.words[ i ][ 3 ]);
i += 1;
window.setImmediate(loop);
});
Is there a way to attach a listener, that executes, when all the words are ready on the canvas?
The text was updated successfully, but these errors were encountered: