Protect Biodiversity
(function() {
function rcvMsg (ev) {
const ifr = document.querySelector(".rallystarter-iframe");
if (ev.data.height && ifr.style.height !== ev.data.height + "px") {
if (typeof shouldDisplayAsModal !== "undefined" && !shouldDisplayAsModal) {
ifr.style.maxHeight = ev.data.height + 20 + "px";
} else {
ifr.style.maxHeight = ev.data.height + "px";
}
}
}
window.addEventListener("message", rcvMsg, false);
}())