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 jm...@apache.org on 2006/08/23 23:20:28 UTC

svn commit: r434241 - /incubator/xap/trunk/src/xap/Xap.js

Author: jmargaris
Date: Wed Aug 23 16:20:26 2006
New Revision: 434241

URL: http://svn.apache.org/viewvc?rev=434241&view=rev
Log:
adjusted base relative path

Modified:
    incubator/xap/trunk/src/xap/Xap.js

Modified: incubator/xap/trunk/src/xap/Xap.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/Xap.js?rev=434241&r1=434240&r2=434241&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/Xap.js (original)
+++ incubator/xap/trunk/src/xap/Xap.js Wed Aug 23 16:20:26 2006
@@ -18,18 +18,18 @@
 Xap = function () {}
 
 
-dojo.hostenv.setModulePrefix("dojo", "../dojo/src");
-dojo.hostenv.setModulePrefix("xap", "../xap");
-dojo.hostenv.setModulePrefix("google", "../google");
+dojo.hostenv.setModulePrefix("dojo", "../../dojo/src");
+dojo.hostenv.setModulePrefix("xap", "../../xap");
+dojo.hostenv.setModulePrefix("google", "../../google");
 
 //if the user does not have a base relative path set
 //then set it to a good default that works with our build scripts
 //and deployment structure
 if (!djConfig){
-	djConfig = { baseRelativePath : "../../src/dojo/src"};
+	djConfig = { baseRelativePath : "../../src/dojo/src/"};
 }
 else if (!djConfig.baseRelativePath){
-	djConfig.baseRelativePath = "../../src/dojo/src";
+	djConfig.baseRelativePath = "../../src/dojo/src/";
 }