This commit is contained in:
Calvin Montgomery 2019-05-25 16:07:44 -07:00
parent df934f401c
commit 6b2dfa483c
2 changed files with 7 additions and 1 deletions

View File

@ -2,7 +2,7 @@
"author": "Calvin Montgomery",
"name": "CyTube",
"description": "Online media synchronizer and chat",
"version": "3.65.1",
"version": "3.65.2",
"repository": {
"url": "http://github.com/calzoneman/sync"
},

View File

@ -264,6 +264,9 @@ Callbacks = {
.attr("rel", "stylesheet")
.attr("href", opts.externalcss)
.attr("id", "chanexternalcss")
.on("load", function () {
handleVideoResize();
})
.appendTo($("head"));
}
}
@ -308,6 +311,9 @@ Callbacks = {
$("<style/>").attr("type", "text/css")
.attr("id", "chancss")
.text(data.css)
.on("load", function () {
handleVideoResize();
})
.appendTo($("head"));
}