Skip to content

Instantly share code, notes, and snippets.

@isaiahdw
Created November 30, 2011 03:42
Show Gist options
  • Save isaiahdw/1407909 to your computer and use it in GitHub Desktop.
Save isaiahdw/1407909 to your computer and use it in GitHub Desktop.
/**
* Application bootstrap file. This makes sure all the files that are
* needed are loaded correctly.
*/
require.config({
baseUrl: Kohana.media_url + "/js/app",
paths: {
underscore: "../../packages/underscore-min",
backbone: "../../packages/backbone",
mustache: "../../packages/mustache/mustache",
text: "../../packages/require/text"
}
});
require([
"app",
], function (App) {
App.initialize();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment