kovacm
Results
2
issues of
kovacm
Here is simple page: ``` test Venobox: iFrame image new VenoBox({ selector: ".my-link", overlayClose: false }); ``` "overlayClose: false" does not have any effect - if you click outside image...
From docs: " // is called before the venobox pops up, return false to prevent opening;" so: ``` onPreOpen: function(obj){ return false; }, ``` Should prevent VenoBox from opening? Right?...