bigbluebutton-Github/labs/html5-embed/public/js/router.js
2012-10-26 18:07:43 +00:00

29 lines
717 B
JavaScript
Executable File

// Filename: router.js
define([
'jquery',
'underscore',
'backbone'
], function($, _, Backbone ){
var AppRouter = Backbone.Router.extend({
routes: {
// Default. We only have one route.
'*actions': 'defaultAction'
}
});
var initialize = function(){
var app_router = new AppRouter;
app_router.on('route:defaultAction', function (actions) {
require(['views/users/list'], function(UserListView) {
console.log("Opening main view");
// We have no matching route, lets display the home page
var usersView = new UserListView();
usersView.render();
});
});
Backbone.history.start();
};
return {
initialize: initialize
};
});