Add timestamps (optional) to chat messages

This commit is contained in:
calzoneman 2013-05-01 16:03:03 -05:00
parent 3600a3114a
commit d8894f0280
4 changed files with 32 additions and 13 deletions

View file

@ -43,12 +43,13 @@ function parseBool(x) {
else return Boolean(x);
}
var USEROPTS = {
theme: readCookie("cytube_theme") || "default",
css: readCookie("cytube_css") || "",
layout: readCookie("cytube_layout") || "default",
synch: parseBool(readCookie("cytube_synch")) || true,
hidevid: parseBool(readCookie("cytube_hidevid")) || false,
modhat: parseBool(readCookie("cytube_modhat")) || false
theme : readCookie("cytube_theme") || "default",
css : readCookie("cytube_css") || "",
layout : readCookie("cytube_layout") || "default",
synch : parseBool(readCookie("cytube_synch")) || true,
hidevid : parseBool(readCookie("cytube_hidevid")) || false,
show_timestamps : parseBool(readCookie("cytube_show_timestamps")) || false,
modhat : parseBool(readCookie("cytube_modhat")) || false
};
applyOpts();
$("#optlink").click(showUserOpts);