X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/65a1f637391920c91a42cfd36695e55b84a1eb95..42f52375b9d61ca9276f43205fc4d4d56243d3b8:/wolnelektury/media/js/book.js diff --git a/wolnelektury/media/js/book.js b/wolnelektury/media/js/book.js index cfb9ab088..41e3be28c 100644 --- a/wolnelektury/media/js/book.js +++ b/wolnelektury/media/js/book.js @@ -1,14 +1,28 @@ -$(function() { - $('#toc').hide(); +$(function() { + function scrollToAnchor(anchor) { + if (anchor) { + var element = $('a[name="' + anchor.slice(1) + '"]'); + if (element.length > 0) { + $.scrollTo(element, 500, {offset: {top: -50, left: 0}}); + $(element).highlightFade('yellow'); + window.location.hash = anchor; + } + } + } + $.highlightFade.defaults.speed = 3000; + $('#toc').hide(); if ($('#toc li').length == 0) { $('#menu li a[href="#toc"]').remove(); } - $('#toc a').click(function(event) { + // On page load, scroll to anchor + scrollToAnchor(window.location.hash) + + $('#toc, #themes, #book-text').delegate('click', 'a', function(event) { event.preventDefault(); - $('#menu li a.selected[href="#toc"]').click(); - $.scrollTo('a[name="' + $(this).attr('href').slice(1) + '"]', {offset: {top: -50, left: 0}}); + $('#menu li a.selected').click(); + scrollToAnchor($(this).attr('href')); }); $('#menu li a').toggle(function() {