Show the source code link when you hover over the members to simplify and declutter the normal doc navigation.

This commit is contained in:
Hiram Chirino
2012-04-13 14:27:21 -04:00
parent 823c858634
commit 954dcb49b4
3 changed files with 26 additions and 4 deletions
@@ -0,0 +1,8 @@
// This execute once the document loads.
$(function(){
$("div.source-detail").hide();
$("div.doc-member").hover(
function() { $(this).children("div.source-detail").show(); },
function() { $(this).children("div.source-detail").hide(); }
);
});
@@ -117,3 +117,10 @@ th, table { border-collapse:collapse;border-color: #E6E7E8; }
.NavBarCell2 { background-color:#FFFFFF;}
.NavBarCell3 { background-color:#FFFFFF;}
div.doc-member.function {
border-bottom: 1px solid #E6E7E8;
}
div.source-detail {
float:right;
}