16 lines
253 B
JavaScript
Executable File
16 lines
253 B
JavaScript
Executable File
// Filename: app.js
|
|
define([
|
|
'jquery',
|
|
'underscore',
|
|
'backbone',
|
|
'router', // Request router.js
|
|
], function($, _, Backbone, Router){
|
|
var initialize = function(){
|
|
Router.initialize();
|
|
};
|
|
|
|
return {
|
|
initialize: initialize
|
|
};
|
|
});
|