Properly close the lightbox when clicking on a link in it.

Fix a bug reported by le_ on MobileRead (http://www.mobileread.com/forums/showpost.php?p=2580757&postcount=525)
This commit is contained in:
Sébastien Lucas 2013-07-29 08:23:33 +02:00
rodič 8e94fb8a1f
revize 4aa3529131
1 změnil soubory, kde provedl 5 přidání a 0 odebrání

Zobrazit soubor

@ -309,6 +309,11 @@ function link_Clicked (event) {
event.preventDefault();
var url = currentLink.attr('href');
if ($(".mfp-ready").length)
{
$.magnificPopup.close();
}
// The bookdetail / about should be displayed in a lightbox
if (getCurrentOption ("use_fancyapps") === "1" &&
(currentLink.hasClass ("fancydetail") || currentLink.hasClass ("fancyabout"))) {