1 // ========================================================================== 2 // Project: Welcome 3 // Copyright: ©2011 Apple Inc. 4 // ========================================================================== 5 /*global Welcome */ 6 7 // This is the function that will start your app running. The default 8 // implementation will load any fixtures you have created then instantiate 9 // your controllers and awake the elements on your page. 10 // 11 // As you develop your application you will probably want to override this. 12 // See comments for some pointers on what to do next. 13 // 14 Welcome.main = function main() { 15 Welcome.getPath('mainPage.mainPane').append(); 16 Welcome.targetsController.reload(); 17 }; 18 19 function main() { Welcome.main(); } 20