source: oceandb/webapproot/config.js @ 47

Last change on this file since 47 was 47, checked in by jazz, 15 years ago
  • blank new project
File size: 571 bytes
Line 
1/* Project specific configuration */
2djConfig = { 
3  usePlainJson: true
4};
5
6djConfig.debugBoot = location.search.indexOf("debug") >=0;
7djConfig.popup = location.search.indexOf("popup") >= 0;
8djConfig.isDebug = djConfig.debugBoot || djConfig.popup;
9
10if (djConfig.isDebug) {
11  djConfig.debugBase = true;
12  djConfig.noFirebugLite = false;
13}
14
15wm = {};
16wm.libPath = "/wavemaker/lib/";
17wm.images = wm.libPath + "wm/base/widget/themes/default/images/";
18wm.dojoPath = djConfig.debugBoot ? "../../" : "../";
19wm.logging = (location.search.indexOf("logging") >= 0);
Note: See TracBrowser for help on using the repository browser.