• Resolved bhautik191

    (@bhautik191)


    Hi guys!

    Thanks for the great plugin!

    Is there a way to disable the lightbox for PDF in iOS safari browser?

    Thanks in advance

Viewing 1 replies (of 1 total)
  • Plugin Author arisoft

    (@arisoft)

    Hi,

    Open “ARI Fancy Lightbox -> Settings -> Advanced” page and populate “Custom JS code” parameter with the following code:

    if (/iPad|iPhone|iPod/.test(navigator.platform)
    || (navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1)) {
    $('A').each(function() {
    var $el = $(this), link = $el.attr('href');
    if (ARI_FANCYBOX_HELPER.isPDFLink(link)) {
    $el.addClass('no-lightbox');
    }
    });
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Disable lightbox in iPhone devices’ is closed to new replies.