blob: 59652e2e7ae0056a6cc4be7f004b6d0151fb9d44 [file] [log] [blame]
<script>
"use strict";
try {
const sensorName = location.hash.substring(1);
const sensor = new window[sensorName]();
window.parent.postMessage({ enabled: true }, "*");
} catch (e) {
window.parent.postMessage({ enabled: false }, "*");
}
</script>