Reply To: Hiding first and last arrows in Lightbox

Bring Your Business to LifeSupportImage StoreHiding first and last arrows in LightboxReply To: Hiding first and last arrows in Lightbox

#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!