diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-03-15 17:22:55 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2016-08-15 19:46:43 +0200 |
| commit | a7313ac8956afdf31fdc921b08b85687665384ce (patch) | |
| tree | bb4083e5cf04f18f523b218614f455e5f28438ba /js/index.js | |
| parent | d4157dfc3c074f4b5b986f1e2ec1fca66dbe5a4e (diff) | |
| download | wvs-vplan-a7313ac8956afdf31fdc921b08b85687665384ce.tar.gz wvs-vplan-a7313ac8956afdf31fdc921b08b85687665384ce.zip | |
HOTFIX: falsche Benutzung von jQuery
Diffstat (limited to 'js/index.js')
| -rw-r--r-- | js/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/index.js b/js/index.js index 0be25f9..5ef44b7 100644 --- a/js/index.js +++ b/js/index.js @@ -39,8 +39,8 @@ function login(){ theme: "b", }); - var username = encodeURIComponent($("#username").value); - var password = encodeURIComponent($("#password").value); + var username = encodeURIComponent($("#username").val()); + var password = encodeURIComponent($("#password").val()); var params = "username=" + username + "&password=" + password; var request = $.ajax({ |
