1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2015-11-20 19:12:44 -05:00
parent f3d7a58b2c
commit 84b99f25ce
84 changed files with 684 additions and 2864 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,16 +0,0 @@
<!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>