JSDOC/BuildDocs.js
authorAlan Knowles <alan@akbkhome.com>
Tue, 6 Jul 2010 10:39:29 +0000 (18:39 +0800)
committerAlan Knowles <alan@akbkhome.com>
Tue, 6 Jul 2010 10:39:29 +0000 (18:39 +0800)
JSDOC/BuildDocs.js

index f419997..902360b 100644 (file)
@@ -185,7 +185,7 @@ BuildDocs = {
         
         Options.LOG.inform("Setting up templates");
         // used to check the details of things being linked to
         
         Options.LOG.inform("Setting up templates");
         // used to check the details of things being linked to
-        Link.symbolSet = symbolSet;
+        Link.symbolSet = this.symbolSet;
         Link.base = "../";
         
         var classTemplate = new Template({
         Link.base = "../";
         
         var classTemplate = new Template({
@@ -206,7 +206,7 @@ BuildDocs = {
         });
 
         
         });
 
         
-        classTemplate.symbolSet = symbolSet;
+        classTemplate.symbolSet = this.symbolSet;
         
         
         function hasNoParent($) {
         
         
         function hasNoParent($) {
@@ -219,7 +219,7 @@ BuildDocs = {
             return ($.is("CONSTRUCTOR") || $.isNamespace); 
         }
         
             return ($.is("CONSTRUCTOR") || $.isNamespace); 
         }
         
-        var symbols = symbolSet.toArray();
+        var symbols = this.symbolSet.toArray();
         
         var files = Options.srcFiles;
         
         
         var files = Options.srcFiles;