mirror of
https://github.com/danbee/tube-status-server
synced 2025-03-04 08:39:12 +00:00
24 lines
433 B
JavaScript
24 lines
433 B
JavaScript
require.config({
|
|
paths: {
|
|
jquery: 'libs/jquery.min',
|
|
jquerymobile: 'libs/jquery.mobile.min',
|
|
underscore: 'libs/underscore',
|
|
backbone: 'libs/backbone',
|
|
mustache: 'libs/mustache',
|
|
text: 'libs/text'
|
|
},
|
|
shim: {
|
|
underscore: {
|
|
exports: '_'
|
|
},
|
|
backbone: {
|
|
deps: ["underscore", "jquery"],
|
|
exports: "Backbone"
|
|
}
|
|
}
|
|
});
|
|
|
|
require(['app'], function(App) {
|
|
App.initialize();
|
|
});
|