Fix option cookies

This commit is contained in:
calzoneman 2013-04-28 17:26:45 -05:00
parent 609b3c3d0a
commit 1cc005b55b
1 changed files with 2 additions and 2 deletions

View File

@ -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);