log
graph
tags
branches
changeset
browse
file
latest
diff
annotate
file log
raw
hgbook
view it/web/hgbook.js @ 1055:4f899bb4d0dd
find changesets by author, revision, files, or words in the commit message
1.6.5 refined
author
zhaopingsun
date
Tue Nov 10 19:48:42 2009 -0500 (2009-11-10)
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
});