Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save toddpi314/2885905 to your computer and use it in GitHub Desktop.
Save toddpi314/2885905 to your computer and use it in GitHub Desktop.
Javascript_NamespaceCreation_Sample
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