ResourceManagerLauncher Module
Module: ResourceManager
I am the ResourceManagerLauncher which launches the stand-alone application ResourceManager.
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 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
Methods
appendTitlebar
()
I append the title bar.
initWindowResizeHandler
()
I set the event handler for the window's resize event.