Viewing 1 replies (of 1 total)
  • Thread Starter mscheland

    (@mscheland)

    The solution is: there is no official solution ??
    So I’ve worked out a workaround by modifieing the updateNav() function:

    if (opts.activeImage != 0) {
    	$('#prevLink').show().click(function () {
    		changeImage(opts.activeImage - 1); return false;
    	});
    }
    if (opts.activeImage != (opts.imageArray.length -1)) {
    	$('#nextLink').show().click(function () {
    		changeImage(opts.activeImage + 1); return false;
    	});
    }
Viewing 1 replies (of 1 total)
  • The topic ‘disable Cycle Nav’ is closed to new replies.