Show the source code link when you hover over the members to simplify and declutter the normal doc navigation.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user