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",
|
"author": "Calvin Montgomery",
|
||||||
"name": "CyTube",
|
"name": "CyTube",
|
||||||
"description": "Online media synchronizer and chat",
|
"description": "Online media synchronizer and chat",
|
||||||
"version": "3.65.1",
|
"version": "3.65.2",
|
||||||
"repository": {
|
"repository": {
|
||||||
"url": "http://github.com/calzoneman/sync"
|
"url": "http://github.com/calzoneman/sync"
|
||||||
},
|
},
|
||||||
|
|
|
@ -264,6 +264,9 @@ Callbacks = {
|
||||||
.attr("rel", "stylesheet")
|
.attr("rel", "stylesheet")
|
||||||
.attr("href", opts.externalcss)
|
.attr("href", opts.externalcss)
|
||||||
.attr("id", "chanexternalcss")
|
.attr("id", "chanexternalcss")
|
||||||
|
.on("load", function () {
|
||||||
|
handleVideoResize();
|
||||||
|
})
|
||||||
.appendTo($("head"));
|
.appendTo($("head"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -308,6 +311,9 @@ Callbacks = {
|
||||||
$("<style/>").attr("type", "text/css")
|
$("<style/>").attr("type", "text/css")
|
||||||
.attr("id", "chancss")
|
.attr("id", "chancss")
|
||||||
.text(data.css)
|
.text(data.css)
|
||||||
|
.on("load", function () {
|
||||||
|
handleVideoResize();
|
||||||
|
})
|
||||||
.appendTo($("head"));
|
.appendTo($("head"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue