Open benwill opened 11 years ago
I had the same issue and this fix works, thanks
Alternatively, set the context of the jQuery selection to elem.
// slides.jquery.js:49
$( '.' + option.next + ', .' + option.prev, elem ).fadeOut(0);
Or, if yr crazy, edit the minified version!
// slides.min.jquery.js:20, column 2826 or so...
// c is the symbol assigned to elem in the minified version
a("."+b.next+", ."+b.prev, c).fadeOut(0)
This worked perfectly — thank you so much.
I had two 'sliders' on a page
One had multiple pages, 1 had one page.
The second one was 'hiding' the previous/next links on the slider when it was setup.
Due to this line:
My fix:
(Only hide the prev/next buttons within the current scope)