You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by bb...@apache.org on 2006/11/12 17:34:05 UTC

svn commit: r474001 - /incubator/xap/trunk/src/xap/application/Application.js

Author: bbuffone
Date: Sun Nov 12 09:34:04 2006
New Revision: 474001

URL: http://svn.apache.org/viewvc?view=rev&rev=474001
Log:
changed the default XapConfig location to the ../../XapConfig.js

Modified:
    incubator/xap/trunk/src/xap/application/Application.js

Modified: incubator/xap/trunk/src/xap/application/Application.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/application/Application.js?view=diff&rev=474001&r1=474000&r2=474001
==============================================================================
--- incubator/xap/trunk/src/xap/application/Application.js (original)
+++ incubator/xap/trunk/src/xap/application/Application.js Sun Nov 12 09:34:04 2006
@@ -134,7 +134,7 @@
 		if (this._applicationConfig.context != null){
 			this._applicationConfig.configFilePath = this._applicationConfig.context + "XapConfig.js";
 		}else{
-			this._applicationConfig.configFilePath = "XapConfig.js";
+			this._applicationConfig.configFilePath = "../../XapConfig.js";
 		}
 	}