From 9e12c8b854e72bf9a661c2a1af033f1b7f3a84d1 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Wed, 3 Nov 2010 15:02:48 +0100 Subject: [PATCH] #264: fixed history in lessons --- wolnelektury/templates/lessons/document_list.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wolnelektury/templates/lessons/document_list.html b/wolnelektury/templates/lessons/document_list.html index 2f1c848b2..00d161fdd 100644 --- a/wolnelektury/templates/lessons/document_list.html +++ b/wolnelektury/templates/lessons/document_list.html @@ -35,7 +35,9 @@ .load(documentLink.attr('href')); }; } else if (!document.location.hash) { - $('#document-list a:first').click(); + $first = $('#document-list a:first'); + $first.addClass('active'); + location.replace($first.attr('data-hash')); } setTimeout(checkHash, 500); -- 2.20.1