11 lines
270 B
HTML
11 lines
270 B
HTML
<script>
|
|
const type = "availability-result";
|
|
navigator.geolocation.getCurrentPosition(
|
|
() => {
|
|
window.parent.postMessage({ type, enabled: true }, "*");
|
|
},
|
|
() => {
|
|
window.parent.postMessage({ type, enabled: false }, "*");
|
|
}
|
|
);
|
|
</script>
|