You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug which file in "Opening #ID from two links" has the solution as below
$.featherlight.defaults.autostart = false; // maybe disable autostart
var $target = $('#targetElement'); // cache element
$('.twolinks').click(function(){ // bind function
$.featherlight($target); // open featherlight with cached element.
});
It's right but set autostart = false will create another issue.
After this all other popup will not able to open. As show in image other than 1 and 2 will not open.
The text was updated successfully, but these errors were encountered:
Bug which file in "Opening #ID from two links" has the solution as below$target = $ ('#targetElement'); // cache element
$.featherlight.defaults.autostart = false; // maybe disable autostart
var
$('.twolinks').click(function(){ // bind function
$.featherlight($target); // open featherlight with cached element.
});
It's right but set autostart = false will create another issue.
After this all other popup will not able to open. As show in image other than 1 and 2 will not open.
The text was updated successfully, but these errors were encountered: