blob: b69028b824813e343022c6eb75a4ce7dd584891c [file] [log] [blame]
<!DOCTYPE html>
<html>
<head/>
<body>
<script>
window.addEventListener('message', function(e) {
if (e.data.tag === 'getKeepAwake') {
window.parent.postMessage({'keepAwake': screen.keepAwake}, '*');
} else if (e.data.tag === 'setKeepAwake') {
screen.keepAwake = e.data.keepAwake;
}
});
</script>
</body>
</html>