Regenerated docs
This commit is contained in:
parent
9775f35120
commit
0a0e966a26
55 changed files with 4873 additions and 13281 deletions
17
doc/html/api/show_hide.js
Normal file
17
doc/html/api/show_hide.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
window.onload = function(e)
|
||||
{
|
||||
var elems = document.querySelectorAll( "div.toc ul ul" );
|
||||
for( i in elems )
|
||||
{
|
||||
if( elems[i].style.display != "block" )
|
||||
elems[i].style.display = "none";
|
||||
}
|
||||
}
|
||||
|
||||
function show_hide(id)
|
||||
{
|
||||
var elem = document.getElementById( id );
|
||||
if( elem.style.display == "block" )
|
||||
elem.style.display = "none";
|
||||
else elem.style.display = "block";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue