Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/pull/4558'
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Mar 5, 2024
2 parents bd36ef2 + b27572c commit 423c87a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/assets/javascripts/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ $(document).ready(function () {
});

// Add click handler to show OpenID field
$("#openid_open_url").click(function () {
$("#openid_open_url").click(function (e) {
e.preventDefault();
$("#openid_url").val("http://");
$("#login_auth_buttons").hide();
$("#login_openid_url").show();
Expand Down

0 comments on commit 423c87a

Please sign in to comment.