mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
16 lines
319 B
HTML
16 lines
319 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<script>
|
|
var worker = new Worker(decodeURIComponent(window.location.search.substring(1)));
|
|
|
|
window.onmessage = function(evt) {
|
|
worker.postMessage(evt.data);
|
|
}
|
|
|
|
worker.onmessage = function(evt) {
|
|
window.parent.postMessage(evt.data, "*");
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |