(function () {
const params = new URLSearchParams(window.location.search);
const memorialSlug = params.get('slug');
if (!memorialSlug) {
document.getElementById('solace-memorial-container').textContent =
'No memorial selected.';
return;
}
function runEmbed() {
theSolaceEmbed('init', {
partnerId: 'd4074f23117d49b19d4322fcfda1bbe9',
embedToken:'eyJwYXJ0bmVySWQiOiJkNDA3NGYyMzExN2Q0OWIxOWQ0MzIyZmNmZGExYmJlOSIsIm9yaWdpbiI6IioiLCJleHAiOjE4MDE3NTQyNTgsInNjb3BlIjoicGFydG5lciIsImNvbXBhbnlJZCI6IjlmZTQzYzJhZmM0MSJ9.sd14VP7qJgieVvNdtlu1Xg18WZ_aZk5Jvp7cW5wlNUY',
});
theSolaceEmbed('loadMemorial', memorialSlug);
theSolaceEmbed('render', 'solace-memorial-container');
}
if (window.theSolaceEmbed) {
runEmbed();
} else {
const s = document.createElement('script');
s.src = 'https://thesolace.com/embed/v1/embed.js';
s.async = true;
s.onload = runEmbed;
document.head.appendChild(s);
}
})();
