VenoBox icon indicating copy to clipboard operation
VenoBox copied to clipboard

overlayClose does not work

Open kovacm opened this issue 3 years ago • 0 comments

Here is simple page:

<html>
  <head>
    <link href="js/venobox/venobox.min.css" rel="stylesheet" type="text/css" media="screen" />
    <script src="js/venobox/venobox.min.js"></script> 

  </head>
  <body>
    test Venobox:
    <a class="my-link" data-vbtype="iframe" href="https://example.com/">iFrame</a>   
    <a class="my-link" href="photo.jpg">image</a>
  </body>
  <script>
      new VenoBox({
          selector: ".my-link",
          overlayClose: false
      });
    </script>
</html>

"overlayClose: false" does not have any effect - if you click outside image or iframe, venobox will close.

kovacm avatar May 19 '22 17:05 kovacm