Changeset 410 for Dev/branches/rest-dojo-ui/client/rft/run.js
- Timestamp:
- 09/07/12 16:59:14 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/branches/rest-dojo-ui/client/rft/run.js
r407 r410 2 2 'dojo/_base/array', 3 3 'dojo/parser', 4 'rft/app/ Controller',4 'rft/app/Router', 5 5 'rft/routes', 6 6 'rft/stddeps', 7 7 'dojo/domReady!' 8 ],function(array,parser, controller,routes) {8 ],function(array,parser,router,routes) { 9 9 parser.parse(); 10 10 array.forEach(routes,function(route){ 11 controller.register(route);11 router.register(route); 12 12 }); 13 controller.startup();13 router.startup(); 14 14 });
Note: See TracChangeset
for help on using the changeset viewer.