X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FBuildDocs.js;h=256cc0c73c2b5ab5bce63be725d5d6b05273d33c;hb=bfad1a763425f33f9d5f893a1cd7b175aed3f081;hp=cdaf8a426a024eaea9d111cba6e26c05cb935b8f;hpb=357bd0204dbe8efd22f80e38fef1c6c73364d4e8;p=gnome.introspection-doc-generator diff --git a/JSDOC/BuildDocs.js b/JSDOC/BuildDocs.js index cdaf8a4..256cc0c 100644 --- a/JSDOC/BuildDocs.js +++ b/JSDOC/BuildDocs.js @@ -60,7 +60,7 @@ BuildDocs = { _getSrcFiles : function() { this.srcFiles = []; - + var _this = this; var ext = ["js"]; if (Options.ext) { ext = Options.ext.split(",").map(function($) {return $.toLowerCase()}); @@ -77,11 +77,11 @@ BuildDocs = { if (ext.indexOf(thisExt) < 0) { return; } - this.srcFiles.push(Options.src[i] + '/' + $); + _this.srcFiles.push(Options.src[i] + '/' + $); }); } - Seed.print(JSON.stringify(this.srcFiles, null,4));Seed.quit(); + //Seed.print(JSON.stringify(this.srcFiles, null,4));Seed.quit(); return this.srcFiles; },