From 7aa62bf55d0e6ce5c3bc16bb4c263b51878cd5be Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 30 Jun 2010 18:01:23 +0800 Subject: [PATCH] JSDOC/Options.js --- JSDOC/Options.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/JSDOC/Options.js b/JSDOC/Options.js index 95e1656..84abc49 100644 --- a/JSDOC/Options.js +++ b/JSDOC/Options.js @@ -101,8 +101,7 @@ Options = { // this is most likely to come from the command line.. if (this.conf) { var conf = this.conf[0] == '/' ? this.conf : this.baseDir + '/' + this.conf; - print("loading : " + conf); - print(JSON.stringify(JSON.parse(File.read(conf)), null,4)); + XObject.extend(this, JSON.parse(File.read(conf)));; } // help ?? -- usage.. @@ -117,7 +116,7 @@ Options = { var _this= this; this.src.forEach(function(v, i) { if (v[0] != '/') { - this.src[i] = _this.baseDir + '/' + v; + _this.src[i] = _this.baseDir + '/' + v; } if (File.isDirectory(this.src[i])) { throw { -- 2.39.2