Regenerated docs

This commit is contained in:
Ferdinand Majerech 2015-02-21 14:36:06 +01:00
parent 9775f35120
commit 0a0e966a26
55 changed files with 4873 additions and 13281 deletions

17
doc/html/api/show_hide.js Normal file
View 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";
}