mirror of https://github.com/calzoneman/sync.git
Fix #813
This commit is contained in:
parent
df934f401c
commit
6b2dfa483c
|
@ -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"
|
||||
},
|
||||
|
|
|
@ -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"));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue