Makes A&J Produce findable.

This commit is contained in:
2025-01-17 20:53:17 -08:00
parent ce3cdf836a
commit ca7a08452c
4 changed files with 50 additions and 12 deletions

View File

@@ -76,3 +76,9 @@ document.addEventListener('alpine:init', () => {
})
})
function addQueryParam(url, k, v) {
let z = new URL(url, window.location.origin);
z.searchParams.append(k, v);
return z
}