Bring Your Business to Life › Support › Image Store › Hiding first and last arrows in Lightbox › Reply To: Hiding first and last arrows in Lightbox
June 18, 2013 at 6:48 pm #53483
mrdares
Participant
Something like… but I can’t figure it out for touch.jquery.js
function updateNavigation( isLastPage ) {
if( current === 0 ) {
$navNext.show();
$navPrev.hide();
}
else if( isLastPage ) {
$navNext.hide();
$navPrev.show();
}
else {
$navNext.show();
$navPrev.show();
}
}
but I can’t figure it out for touch.jquery.js
Please help!