diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-12-06 17:48:13 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-12-07 17:27:34 +0000 |
commit | 6b4dbf8483f291ab85d59df87099db84abbce3c3 (patch) | |
tree | 937b472f73663962eadc7f3968becb892b579d01 /web/cobrands/borsetshire/js.js | |
parent | 823ed42d79ef5f20b937cc2ae2025dea0df7c610 (diff) |
[Borsetshire] Amend sign in instruction text.
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(); |