Merge branch 'main' into production

This commit is contained in:
Mouse Reeve 2021-09-12 11:58:59 -07:00
commit 2d7047b833
2 changed files with 15 additions and 3 deletions

View file

@ -13,7 +13,7 @@ VERSION = "0.0.1"
PAGE_LENGTH = env("PAGE_LENGTH", 15) PAGE_LENGTH = env("PAGE_LENGTH", 15)
DEFAULT_LANGUAGE = env("DEFAULT_LANGUAGE", "English") DEFAULT_LANGUAGE = env("DEFAULT_LANGUAGE", "English")
JS_CACHE = "18443742" JS_CACHE = "e5832a26"
# email # email
EMAIL_BACKEND = env("EMAIL_BACKEND", "django.core.mail.backends.smtp.EmailBackend") EMAIL_BACKEND = env("EMAIL_BACKEND", "django.core.mail.backends.smtp.EmailBackend")

View file

@ -64,9 +64,21 @@ let StatusCache = new class {
* @return {undefined} * @return {undefined}
*/ */
submitStatus(event) { submitStatus(event) {
event.preventDefault();
const form = event.currentTarget; const form = event.currentTarget;
const trigger = event.submitter; let trigger = event.submitter;
// Safari doesn't understand "submitter"
if (!trigger) {
trigger = event.currentTarget.querySelector("button[type=submit]");
}
// This allows the form to submit in the old fashioned way if there's a problem
if (!trigger || !form) {
return;
}
event.preventDefault();
BookWyrm.addRemoveClass(form, 'is-processing', true); BookWyrm.addRemoveClass(form, 'is-processing', true);
trigger.setAttribute('disabled', null); trigger.setAttribute('disabled', null);