X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/95045552540ca917d273954ebfa20b47a306bb93..9c5d9a4e77a10b4e60d89d3890e49002bd7f3993:/wolnelektury/static/js/book.js diff --git a/wolnelektury/static/js/book.js b/wolnelektury/static/js/book.js index 41e3be28c..598ef2eb1 100644 --- a/wolnelektury/static/js/book.js +++ b/wolnelektury/static/js/book.js @@ -1,4 +1,4 @@ -$(function() { +$(function() { function scrollToAnchor(anchor) { if (anchor) { var element = $('a[name="' + anchor.slice(1) + '"]'); @@ -9,22 +9,22 @@ $(function() { } } } - + $.highlightFade.defaults.speed = 3000; $('#toc').hide(); if ($('#toc li').length == 0) { $('#menu li a[href="#toc"]').remove(); } - + // 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').click(); scrollToAnchor($(this).attr('href')); }); - + $('#menu li a').toggle(function() { $('#menu li a.selected').click(); $(this).addClass('selected');