diff options
Diffstat (limited to 'web/cobrands/borsetshire/js.js')
-rw-r--r-- | web/cobrands/borsetshire/js.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/cobrands/borsetshire/js.js b/web/cobrands/borsetshire/js.js index 9fdb3e31b..6799ff5e3 100644 --- a/web/cobrands/borsetshire/js.js +++ b/web/cobrands/borsetshire/js.js @@ -11,9 +11,9 @@ } } - $('#demo-user-list dt').click(function(){ + $('#demo-user-list button').click(function(){ var form = document.forms.general_auth; - form.username.value = $(this).text(); + form.username.value = $(this).data('email'); form.password_sign_in.value = 'password'; set_redirect(form); form.submit(); |