Created
June 7, 2012 01:16
-
-
Save toddpi314/2885905 to your computer and use it in GitHub Desktop.
Javascript_NamespaceCreation_Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Namespace.Register('MyApp.Loader'); | |
Namespace.Register('MyApp.ORM.Mappers'); | |
MyApp.Loader.appLoader = function() { | |
// Load application | |
}; | |
MyApp.Loader.modelLoader = function() { | |
// Load up my Models | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment