log
graph
tags
branches
changeset
browse
file
latest
diff
annotate
file log
raw
hgbook
view it/web/hgbook.js @ 854:18b67e30ba27
find changesets by author, revision, files, or words in the commit message
Wording.
author
gpiancastelli
date
Sat Aug 22 21:56:15 2009 +0200 (2009-08-22)
parents
children
line source
1
$(document).ready(function() {
2
$("div.toc>p")
3
.toggle(function() { $(this).nextAll().show("normal"); },
4
function() { $(this).nextAll().hide("normal"); })
5
.hover(function() { $(this).fadeTo("normal", 0.8); },
6
function() { $(this).fadeTo("normal", 0.35); });
7
});