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
Take the following HTML to be used as a slider and slides, altering the default elements setting to 'div'.
<div id = 'slide'> <div> Slide Content 1 </div> <div> Slide Content 2 </div> <div> Slide Content 3 with child DIV <div id = 'child'>I am a child!</div> </div> <div> Slide Content 4 </div> </div>
Slippry will try to turn div#child in to its own slide. The plugin will also stop working.
The fix is really simple, change line 660 from this
slip.vars.slides = $(slip.settings.elements, el);
to this, so the plugin only targets the immediate children
slip.vars.slides = el.children(slip.settings.elements);
Otherwise, great work on the plugin, its great!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Take the following HTML to be used as a slider and slides, altering the default elements setting to 'div'.
Slippry will try to turn div#child in to its own slide. The plugin will also stop working.
The fix is really simple, change line 660 from this
to this, so the plugin only targets the immediate children
Otherwise, great work on the plugin, its great!
The text was updated successfully, but these errors were encountered: