Show:

I am the ResourceManagerLauncher which launches the stand-alone application ProjectManager.

I am the entry point to the application and i am called from index.html with

$(document).ready( function() {

     FrameTrail.start('ResourceManagerLauncher', {
         // initial global state
     });

 } );

I perform the following tasks:

  • I init the necessary modules
  • I load the project index data from the server
  • I ensure the user is logged
  • I prepare the interface

I am a "one-pass" module, this is: I don't export any public methods or properties, and my sole purpose is to start other modules, after which I am discarded.

Item Index