We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support pause/resume on $.fn.delay
Consider below code. It's NOT abnormal.
$el .delay(300) .animate({...});
If pause/resume are not supported on delay, it is impossible to restore the delay state.
When paused after 200ms and resumed, we expect 100ms delay and do animate. because pause/resume is applied on animate only.
To support above situation, add support pause/resume on delay.
The text was updated successfully, but these errors were encountered:
feat(pauseResume): Support pause/resume on jQuery delay fn.
8e27b6d
Ref naver#167
28eb48f
jongmoon
No branches or pull requests
Description
Support pause/resume on $.fn.delay
Consider below code. It's NOT abnormal.
If pause/resume are not supported on delay, it is impossible to restore the delay state.
When paused after 200ms and resumed, we expect 100ms delay and do animate. because pause/resume is applied on animate only.
To support above situation, add support pause/resume on delay.
The text was updated successfully, but these errors were encountered: