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",
|
||||
css: readCookie("cytube_css") || "",
|
||||
layout: readCookie("cytube_layout") || "default",
|
||||
synch: readCookie("cytube_synch") || true,
|
||||
modhat: readCookie("cytube_modhat") || false
|
||||
synch: (readCookie("cytube_synch") || true) != "false",
|
||||
modhat: (readCookie("cytube_modhat") || false) != "false"
|
||||
};
|
||||
applyOpts();
|
||||
$("#optlink").click(showUserOpts);
|
||||
|
|
Loading…
Reference in New Issue