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
No related branches found
No related tags found
No related merge requests found
...@@ -161,6 +161,7 @@ function document_properties(name, obj) ...@@ -161,6 +161,7 @@ function document_properties(name, obj)
function document_object(name, obj, type) function document_object(name, obj, type)
{ {
object_header(name,obj,type); object_header(name,obj,type);
if(obj._dont_document==undefined) {
f.writeln("<ul>"); f.writeln("<ul>");
document_methods(name,obj); document_methods(name,obj);
object_depth++; object_depth++;
...@@ -169,6 +170,7 @@ function document_object(name, obj, type) ...@@ -169,6 +170,7 @@ function document_object(name, obj, type)
f.writeln("</ul>"); f.writeln("</ul>");
table_close(); table_close();
} }
}
// open HTML output file // open HTML output file
f=new File("jsobjs.html"); f=new File("jsobjs.html");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment