From 22ef9c792241080690626d5316c942cd87b76157 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Thu, 17 Jun 2010 16:56:11 +0200 Subject: [PATCH] fixed footnotes highlighting --- wolnelektury/static/js/book.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/wolnelektury/static/js/book.js b/wolnelektury/static/js/book.js index 598ef2eb1..9960bfa6a 100644 --- a/wolnelektury/static/js/book.js +++ b/wolnelektury/static/js/book.js @@ -1,10 +1,14 @@ $(function() { function scrollToAnchor(anchor) { if (anchor) { - var element = $('a[name="' + anchor.slice(1) + '"]'); + var anchor_name = anchor.slice(1); + var element = $('a[name="' + anchor_name + '"]'); if (element.length > 0) { $.scrollTo(element, 500, {offset: {top: -50, left: 0}}); - $(element).highlightFade('yellow'); + foot_elem = $('#footnotes a[name="' + anchor_name + '"]'); + if (foot_elem.length > 0) { + $(element).parent().highlightFade('yellow'); + } window.location.hash = anchor; } } -- 2.20.1