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/28 03:51:28 UTC

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

Author: bbuffone
Date: Mon Nov 27 19:51:28 2006
New Revision: 479882

URL: http://svn.apache.org/viewvc?view=rev&rev=479882
Log:
changed the way the configuration of paths work. I added a srcPath to the 
config file.  This tells the XAP engine where the src files are located relative to the
start page.

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=479882&r1=479881&r2=479882
==============================================================================
--- incubator/xap/trunk/src/xap/application/Application.js (original)
+++ incubator/xap/trunk/src/xap/application/Application.js Mon Nov 27 19:51:28 2006
@@ -55,6 +55,8 @@
 xap.application.Application = function(applicationConfig) {
 	if (applicationConfig != null){
     	this._applicationConfig = applicationConfig;
+    }else{
+        this._applicationConfig = {};
     }
 }