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

@ -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"));
}