Skip to content

Instantly share code, notes, and snippets.

@xtrasmal
Created May 13, 2013 23:57
Show Gist options
  • Save xtrasmal/5572551 to your computer and use it in GitHub Desktop.
Save xtrasmal/5572551 to your computer and use it in GitHub Desktop.
AMD define modules and init
define(['editor', 'settings', 'tags', 'bootstrap'], function (editor, settings, tags) {
return {
initialize: function () {
editor.initialize();
tags.initialize();
settings.initialize();
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment