Fixed a book in book.js when link to main page didn't work in book reader.
authorMarek Stępniowski <marek@stepniowski.com>
Thu, 18 Sep 2008 11:36:45 +0000 (13:36 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Thu, 18 Sep 2008 11:36:45 +0000 (13:36 +0200)
wolnelektury/media/js/book.js

index dcab8b1..fb4467f 100644 (file)
@@ -17,7 +17,7 @@ $(function() {
     // On page load, scroll to anchor
     scrollToAnchor(window.location.hash)
     
-    $('body').delegate('click', '#toc a, #themes a, .anchor, .annotation', function(event) {
+    $('#toc, #themes, #book-text').delegate('click', 'a', function(event) {
         event.preventDefault();
         $('#menu li a.selected').click();
         scrollToAnchor($(this).attr('href'));