mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
Prevent double-clicks on SSO login providers (#5842)
This commit is contained in:
@@ -731,6 +731,11 @@ $(function () {
|
||||
$(countInput).trigger("change");
|
||||
});
|
||||
});
|
||||
|
||||
$("#customer-account-login-providers a").click(function () {
|
||||
// Prevent double-submit, see also https://github.com/pretix/pretix/issues/5836
|
||||
$(this).addClass("disabled");
|
||||
});
|
||||
});
|
||||
|
||||
function copy_answers(elements, answers) {
|
||||
|
||||
Reference in New Issue
Block a user