diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-04-20 12:52:07 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2016-08-15 19:46:53 +0200 |
| commit | 34345c7fd0e12e0a3cad4f247d68bca90d8bb681 (patch) | |
| tree | 4306cfb8114e2644163b224ff97d6a9375259681 | |
| parent | 588b8b41ebca48b152d3298e1d48d7e318f0370c (diff) | |
| download | wvs-vplan-34345c7fd0e12e0a3cad4f247d68bca90d8bb681.tar.gz wvs-vplan-34345c7fd0e12e0a3cad4f247d68bca90d8bb681.zip | |
verbessere Login
| -rw-r--r-- | js/index.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/index.js b/js/index.js index d3934af..4719ee3 100644 --- a/js/index.js +++ b/js/index.js @@ -223,7 +223,6 @@ function loggedin(resulthtml){ function sendlogin(username, password){ var params = 'username=' + username + '&password=' + password; - $('#error_noconn').hide('fast'); $('#error_passwd').hide('fast'); @@ -272,8 +271,10 @@ function login(){ if(userdata != null){ sendlogin(userdata[0], userdata[1]); + $('#loginpopup').popup('close'); return 1; }else{ + $('#lnklogin').click(); return 0; } } |
