Skip to content
Snippets Groups Projects
Commit 03232c07 authored by rswindell's avatar rswindell
Browse files

Added check in document_object for special property to keep associative

arrays from being expanded and documented.
parent 4fb85335
Branches
Tags
No related merge requests found
......@@ -161,13 +161,15 @@ function document_properties(name, obj)
function document_object(name, obj, type)
{
object_header(name,obj,type);
f.writeln("<ul>");
document_methods(name,obj);
object_depth++;
document_properties(name,obj);
object_depth--;
f.writeln("</ul>");
table_close();
if(obj._dont_document==undefined) {
f.writeln("<ul>");
document_methods(name,obj);
object_depth++;
document_properties(name,obj);
object_depth--;
f.writeln("</ul>");
table_close();
}
}
// open HTML output file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment