Fix #81
This commit is contained in:
parent
3da4baba52
commit
cecb5db6c7
3 changed files with 8 additions and 6 deletions
|
|
@ -80,10 +80,12 @@ function initCallbacks() {
|
|||
$("#opt_show_public").prop("checked", opts.show_public);
|
||||
$("#customCss").remove();
|
||||
if(opts.customcss.trim() != "") {
|
||||
$("<link/>").attr("rel", "stylesheet")
|
||||
.attr("href", opts.customcss)
|
||||
.attr("id", "customCss")
|
||||
.insertAfter($("link[href='./assets/css/ytsync.css']"));
|
||||
$("#usertheme").remove();
|
||||
$("<link/>")
|
||||
.attr("rel", "stylesheet")
|
||||
.attr("href", opts.customcss)
|
||||
.attr("id", "customCss")
|
||||
.appendTo($("head"));
|
||||
}
|
||||
$("#opt_allow_voteskip").prop("checked", opts.allow_voteskip);
|
||||
$("#opt_voteskip_ratio").val(opts.voteskip_ratio);
|
||||
|
|
|
|||
|
|
@ -1150,7 +1150,7 @@ function applyOpts() {
|
|||
if(USEROPTS.css) {
|
||||
$("<link/>").attr("rel", "stylesheet")
|
||||
.attr("type", "text/css")
|
||||
.attr("id", "usertheme")
|
||||
.attr("id", "usercss")
|
||||
.attr("href", USEROPTS.css)
|
||||
.appendTo($("head"));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue