Browse Source

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)
master
Sébastien Lucas 10 years ago
parent
commit
4aa3529131
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      util.js

+ 5
- 0
util.js View File

@@ -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"))) {


Loading…
Cancel
Save