source: Dev/trunk/src/client/qed-client/index.js @ 472

Last change on this file since 472 was 472, checked in by hendrikvanantwerpen, 12 years ago

Fixed deploy script.
Fix for ... in ... complaints by jshint.
Fix a typo.

File size: 423 bytes
Line 
1define([
2    "./app/Router",
3    "./routes",
4    "./session",
5    "./ui/MainMenu",
6    "dojo/_base/array",
7    "dojo/parser",
8    "./stddeps",
9    "dojo/domReady!"
10], function(Router, routes, session, MainMenu, array, parser) {
11
12    parser.parse();
13
14    new MainMenu({},"menu").startup();
15
16    array.forEach(routes,function(route){
17        Router.register(route);
18    });
19    Router.startup();
20
21    session.restore();
22
23});
Note: See TracBrowser for help on using the repository browser.