35 lines
692 B
JavaScript
35 lines
692 B
JavaScript
//main.js
|
|
/*
|
|
/js
|
|
js/main.js << main file for require.js
|
|
--/libs/(jquery,backbone,etc.) << base libs
|
|
--/goatApp/ << base dir for goat application, js-wise
|
|
--/goatApp/model
|
|
--/goatApp/view
|
|
--/goatApp/support
|
|
--/goatApp/controller
|
|
*/
|
|
|
|
require.config({
|
|
baseUrl: "js/",
|
|
paths: {
|
|
jquery: 'libs/jquery-1.10.2.min',
|
|
underscore: 'libs/underscore-min',
|
|
backbone: 'libs/backbone-min',
|
|
templates: 'goatApp/templates'
|
|
}
|
|
,
|
|
shim: {
|
|
underscore: {
|
|
exports: "_"
|
|
},
|
|
backbone: {
|
|
deps: ['underscore', 'jquery'],
|
|
exports: 'Backbone'
|
|
}
|
|
}
|
|
});
|
|
|
|
require(['jquery','underscore','backbone','goatApp/goatApp'], function($,_,Backbone,Goat){
|
|
Goat.initApp();
|
|
}); |