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
Thanks for the great project, @shakiba. Currently Tween._done supports one function. Should we make it a list, such that the following application will also work? img.tween(100).alpha(0).remove().done(fn)
Otherwise, it will fail to remove since
remove() set _done to this.remove(),
but done(fn) will overwrite the _done. to fn.
The text was updated successfully, but these errors were encountered:
Hmm, yes that doesn't look good. I'm not sure if we should queue or replace multiple "done", but remove and done should be separated. Would you be able to make a PR to fix it?
Thanks for the great project, @shakiba. Currently Tween._done supports one function. Should we make it a list, such that the following application will also work?
img.tween(100).alpha(0).remove().done(fn)
Otherwise, it will fail to remove since
The text was updated successfully, but these errors were encountered: