summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-03-15 17:22:55 +0100
committerschneefux <schneefux+commit@schneefux.xyz>2016-08-15 19:46:43 +0200
commita7313ac8956afdf31fdc921b08b85687665384ce (patch)
treebb4083e5cf04f18f523b218614f455e5f28438ba /js
parentd4157dfc3c074f4b5b986f1e2ec1fca66dbe5a4e (diff)
downloadwvs-vplan-a7313ac8956afdf31fdc921b08b85687665384ce.tar.gz
wvs-vplan-a7313ac8956afdf31fdc921b08b85687665384ce.zip
HOTFIX: falsche Benutzung von jQuery
Diffstat (limited to 'js')
-rw-r--r--js/index.js4
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({