VenoBox Plugin Error in Safari Mac OsX

0

I'm having a little problem with this plugin, the name is VenoBox. With the same function as ColorBox, it opens iframes, photos, external links and HTML in the famous lightbox effect.

I took a project in which the developers who created the structure used this plugin, and in Safari (mac osx) when it opens, it seems that it runs more than once the click function, so it displays the modal and then loading it, and the information that should be displayed is left behind. In the Console does not display any plugin error, only jquery.map errors that I have already placed the file and even then the problem persists.

To view the problem: www.pinheironeto.com.br (links do rodape - Terms of Use / Privacy Policy)

Thanks and abs!

    
asked by anonymous 24.09.2015 / 22:07

1 answer

0

After some testing, we found a possible bug in the plugin, which was fixed at line 538 of the plugin:

  content.animate({
    'opacity': '1'
  },'slow',function(){
    //fix to Safari on MacOS
    $(".vbox-preloader").hide();
  });

}

We just put a hide in the div preloader, which was over the box, thus solving the display problem in Safari on Mac OSX.

    
28.09.2015 / 23:50