fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
lesmianator: use cPickle, change main
[wolnelektury.git]
/
wolnelektury
/
static
/
js
/
book.js
diff --git
a/wolnelektury/static/js/book.js
b/wolnelektury/static/js/book.js
index
598ef2e
..
9960bfa
100644
(file)
--- a/
wolnelektury/static/js/book.js
+++ b/
wolnelektury/static/js/book.js
@@
-1,10
+1,14
@@
$(function() {
function scrollToAnchor(anchor) {
if (anchor) {
$(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}});
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;
}
}
window.location.hash = anchor;
}
}