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
The following code (demo):
$('#slider').movingBoxes({ initialized: function (e, slider, tar) { console.log('initialized'); }, // callback upon change panel initialization initChange: function (e, slider, tar) { console.log('init changed'); }, // callback before any animation occurs beforeAnimation: function (e, slider, tar) { console.log('before animation'); }, // callback after animation completes completed: function (e, slider, tar) { console.log('completed'); } }); $('#slider').movingBoxes();
will result in this in the console
completed initialized initialized
Fix the plugin so the completed event isn't called in this situation, and initialized is only called once.
completed
initialized
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code (demo):
will result in this in the console
Fix the plugin so the
completed
event isn't called in this situation, andinitialized
is only called once.The text was updated successfully, but these errors were encountered: