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
http://jquery.malsup.com/cycle2/faq/ suggests using CSS to prevent FOUC on slides by setting them to 'display: none;' before Cycle2 fires.
Change #419 changes the slide hide/show mechanism to use 'visibility' instead and so slides hidden to prevent FOUC are never displayed.
The text was updated successfully, but these errors were encountered:
I should add that the right fix for anyone preventing FOUC in this way is to change their CSS, either to
1 - put 'display: block' on the current slide,
or, better as it goes with the rationale for Malsup's code change #419,
2 - change your FOUC code to use visibility instead.
Hope this helps anyone waking up to 'broken' slideshows.
Sorry, something went wrong.
#423; fix FOUC issues caused by last commit.
2956dd0
Thanks for catching and reporting this.
No branches or pull requests
http://jquery.malsup.com/cycle2/faq/ suggests using CSS to prevent FOUC on slides by setting them to 'display: none;' before Cycle2 fires.
Change #419 changes the slide hide/show mechanism to use 'visibility' instead and so slides hidden to prevent FOUC are never displayed.
The text was updated successfully, but these errors were encountered: