diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-03-27 19:30:35 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2016-08-15 19:46:46 +0200 |
| commit | 204838d2da9c33954e884c5d26c9fb393a057072 (patch) | |
| tree | a76815b269609781836bdd2e7edce266beada254 | |
| parent | da3497d0065b435d70e58fbc16deec3e242c0260 (diff) | |
| download | wvs-vplan-204838d2da9c33954e884c5d26c9fb393a057072.tar.gz wvs-vplan-204838d2da9c33954e884c5d26c9fb393a057072.zip | |
deaktiviere Loginform nach Buttonklick
| -rw-r--r-- | index.html | 2 | ||||
| -rw-r--r-- | js/index.js | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -33,7 +33,7 @@ <h1>WvS VPlan | Login</h1> </div> <div role="main" class="ui-content"> - <form action="javascript:login()"> + <form action="javascript:login()" id="loginform"> <label for="username">Benutzername</label> <input type="text" id="username" hint="Benutzername" autofocus required> <label for="password">Passwort</label> diff --git a/js/index.js b/js/index.js index 113edcd..1285529 100644 --- a/js/index.js +++ b/js/index.js @@ -187,6 +187,7 @@ function get_overview(link){ } function login(){ + $("#loginform").addClass('ui-disabled'); $.mobile.loading("show", { text: "Lade...", textVisible: true, |
