latest changes requested to remove ID number and date of birth
[namibia] / public / js / app / app.js
1 ;(function(){
2
3     window._App = function()
4     {
5
6         this.initialize();
7
8     };
9
10     window._App.prototype =
11     {
12
13         activePage : false,
14
15         initialize : function()
16         {
17             this.Controller = new _App.Controller({
18               $_el : $('#PageContent')
19             });
20             this.Router          = new _App.Router();
21             this.Ajax            = new _App.Ajax();
22             this.Util            = new _App.Util();
23             this.Event           = new _App.Event();
24             this.API             = new _App.API();
25             this.DataStore       = new _App.DataStore();
26             this.ElementLibrary  = new _App.ElementLibrary();
27             this.Template        = new _App.Template();
28             this.TemplateElement = new _App.TemplateElement();
29
30             _App = null;
31         },
32
33                 start : function()
34                 {
35                     this.Router.handleHashChange();
36                 },
37
38
39
40     };
41
42 })();