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
animSequence = [ // Hide the spinner { e: $spinner, p: { opacity: 0 }, o: { duration: 150, display: "none" } }, // Show the button { e: $btn, p: { opacity: 1 }, o: { duration: 150, visibility: "visible" } } ]; $.Velocity.RunSequence(animSequence);
The spinner won't get display: none. Although, if it goes after the button, everything works correctly.
The text was updated successfully, but these errors were encountered:
Here's a fiddle: http://jsfiddle.net/AlexeyGorokhov/gjLft5ch/2/
Sorry, something went wrong.
This looks to be linked to issue #413
6b22792
UI Pack Fixes
4324d1c
Fixes bug with e/p/o shorthands and Sequence Running. Closes #413. Closes #421. Closes #435. Closes #415. Thanks, @dabernathy89! Closes #407.
No branches or pull requests
animSequence = [
// Hide the spinner
{
e: $spinner,
p: { opacity: 0 },
o: {
duration: 150,
display: "none"
}
},
// Show the button
{
e: $btn,
p: { opacity: 1 },
o: {
duration: 150,
visibility: "visible"
}
}
];
$.Velocity.RunSequence(animSequence);
The spinner won't get display: none. Although, if it goes after the button, everything works correctly.
The text was updated successfully, but these errors were encountered: