blob: e1b50f670105f3a05dacd3518d62770685121c67 [file] [log] [blame]
<script>
let msg = "";
screen.orientation.lock("portrait-primary")
.then(() => {
msg = screen.orientation.type;
}).catch(error => {
msg = error.name;
}).finally(() => {
parent.window.postMessage(msg, "*");
});
</script>