new conf file for the tomato inbred lines genomes , gh13 and BTI-87
[sgn.git] / js / CXGN / Login.js
blob4a70a374b05b96fdeb1f1d3e40b87ff0090f44e2
2 JSAN.use('jqueryui');
4 function isLoggedIn() { 
5     
6     var user_id; 
8     jQuery.ajax( { 
9         url: '/user/logged_in',
10         async: false,
11         success: function(response) { 
12             if (response.error) { 
13                 alert(response.error);
14             }
15             else { 
16                 //alert("LOGGED IN USER: "+response.user_id);
17                 user_id =  response.user_id;
18             }
19         },
20         error: function(response) { 
21             alert("An error occurred. "+response);
22         }
23     }
24                  
25                );
27     return user_id;
30 function login() { 
31     
32     
35 function logout() { 
39             
41 function setUpLogin() { 
43  jQuery('#working').dialog( { 
44     height: 80,
45     width: 100,
46     modal: true,
47     title: "Working...",
48     closeOnEscape: false,
49     autoOpen: false
50   });
51   
52 jQuery('#login_window').dialog( { 
53     height: 180,
54     width: 300,
55     modal: true,
56     title: 'Login',
57     autoOpen: false,
58     buttons: { 
59       "Login" : 
60         function() { 
61           login();
62         },
63       "Cancel": 
64         function() { 
65           jQuery('#login_window').dialog("close");
66         }
67     }
68      
69    
70   });