1 2 /** 3 * sets up the runtime environment: 4 * 5 * loads the Corodva library if necessary. 6 */ 7 define(['env', 'module'], function(env, module) { 8 9 var isBrowserEnv = env.isBrowserEnv; 10 11 // //DISABLED: using new mechanism for loading Cordova 3.x 12 // if( ! isBrowserEnv){ 13 // require(['cordova']); 14 // } 15 }); 16