(function (moduleId) {
'use-strict';
$(document).ready(function () {
$('.newsletter-form').submit(function () {
const form = $(this);
const email = form.find("input[name='newsletter_email']").val();
const checkbox = document.getElementById("secondarySwitch")
const allowNewsletter = checkbox.checked;
if(email != null && email !== "" && allowNewsletter) {
$.ajax({
url: "/api/newsletter_subscription",
type: "PUT",
data: {
email: email,
allowAdvertising: false
},
success: function () {
toastr.success(subscriptionSuccessMessage);
form.find("input[name='newsletter_email']").val('')
document.getElementById("secondarySwitch").checked = false
},
error: function () {
toastr.error(subscriptionErrorMessage);
form.find("input[name='newsletter_email']").val('')
document.getElementById("secondarySwitch").checked = false
}
});
}
});
$('.newsletter-form-mobile').submit(function () {
const form = $(this);
const email = form.find("input[name='newsletter_email']").val();
const checkbox = document.getElementById("primarySwitch")
const allowNewsletter = checkbox.checked;
if(email != null && email !== "" && allowNewsletter) {
$.ajax({
url: "/api/newsletter_subscription",
type: "PUT",
data: {
email: email,
allowAdvertising: false
},
success: function () {
toastr.success(subscriptionSuccessMessage);
form.find("input[name='newsletter_email']").val('')
document.getElementById("primarySwitch").checked = false
},
error: function () {
toastr.error(subscriptionErrorMessage);
form.find("input[name='newsletter_email']").val('')
document.getElementById("primarySwitch").checked = false
}
});
}
});
});
})('u-61cdbda3-6bcb-481f-ba72-9d131ec55614');