Love color, fabric, and quilting inspiration? Join our email list for new fabric arrivals, quilt kits, Kaffe Fassett Collective updates, special offers, and news from All About Color Quilting.
(function () {
var thankYouUrl =
"https://www.allaboutcolorquilting.com/thank-you-for-subscribing--all-about-color-quilting.htm";
var originalOpen = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function (method, url) {
this.addEventListener("load", function () {
if (typeof url !== "string" || url.indexOf("subscribe.php") === -1) {
return;
}
try {
var response = JSON.parse(this.responseText);
if (
Array.isArray(response) &&
response.length > 0 &&
response[0].status === "emailsent"
) {
window.location.replace(thankYouUrl);
}
} catch (e) {
console.log("AACQ: newsletter response:", this.responseText);
}
});
return originalOpen.apply(this, arguments);
};
})();