mirror of
https://github.com/servo/servo.git
synced 2025-07-16 03:43:38 +01:00
10 lines
200 B
HTML
10 lines
200 B
HTML
<script>
|
|
'use strict';
|
|
|
|
new IdleDetector().start().then(() => {
|
|
window.parent.postMessage({ enabled: true }, '*');
|
|
}, error => {
|
|
window.parent.postMessage({ enabled: false }, '*');
|
|
});
|
|
|
|
</script>
|