mirror of https://github.com/calzoneman/sync.git
Fix option cookies
This commit is contained in:
parent
609b3c3d0a
commit
1cc005b55b
|
@ -35,8 +35,8 @@ var USEROPTS = {
|
||||||
theme: readCookie("cytube_theme") || "default",
|
theme: readCookie("cytube_theme") || "default",
|
||||||
css: readCookie("cytube_css") || "",
|
css: readCookie("cytube_css") || "",
|
||||||
layout: readCookie("cytube_layout") || "default",
|
layout: readCookie("cytube_layout") || "default",
|
||||||
synch: readCookie("cytube_synch") || true,
|
synch: (readCookie("cytube_synch") || true) != "false",
|
||||||
modhat: readCookie("cytube_modhat") || false
|
modhat: (readCookie("cytube_modhat") || false) != "false"
|
||||||
};
|
};
|
||||||
applyOpts();
|
applyOpts();
|
||||||
$("#optlink").click(showUserOpts);
|
$("#optlink").click(showUserOpts);
|
||||||
|
|
Loading…
Reference in New Issue