remove about us and FAQ links in menus
[namibia] / public / templates / page / login.js
1 var template_login = function( static )
2 {
3         this.static = static;
4         this.elements = {};
5         this.construct = function()
6         {
7                 //alert('Hi there, we now do event registrations, etc');
8                 $('body').removeClass("black");
9                 
10                 var location = '#/login';
11                 $('.select_page').removeClass('select_page');
12                 $('a[href="/' + location +'"]').closest('li').addClass('select_page');
13                 $('#togglePasswordCheck').click();
14                 
15         };
16         this.destruct = function()
17         {
18                 //alert('Hi there, removing bindings, etc');
19         };
20 };