JSDOC/ScopeParser.js
[gnome.introspection-doc-generator] / docs.js
diff --git a/docs.js b/docs.js
index 4586039..a34e3ef 100644 (file)
--- a/docs.js
+++ b/docs.js
@@ -48,7 +48,7 @@ ns_list = ns_list.sort();
 langs=[];
 File.list(__script_path__ + '/templates/').forEach(function(f) {
     if (!File.isDirectory(__script_path__ + '/templates/' + f)) {
-        continue;
+        return;
     }
     if (f == 'resources') {
         return;
@@ -96,9 +96,10 @@ ns_list.forEach(function(ns_name)
     }
     
     
-    ns['left_bar'] = cls_ix_template.process(ns);
+    
 
     langs.forEach(function(lang) {
+        ns['left_bar'] = lang.cls_ix_template.process(ns);
         // namespace template
         Gio.simple_write(outputdir + '/'+ lang.name+ '/' +ns_name +  '.html', lang.cls_template.process(ns));