TheDesk Akane (16.0.2)

This commit is contained in:
cutls
2018-08-05 12:36:23 +09:00
parent a2a937e220
commit 7ab860c34c
13 changed files with 174 additions and 26 deletions

View File

@@ -78,9 +78,6 @@ function post() {
var box = localStorage.getItem("box");
if (box == "yes") {
hide();
}else if (box == "hide"){
$("body").addClass("mini-post");
$(".mini-btn").text("expand_less");
}
$("#toot-post-btn").prop("disabled", false);
todc();
@@ -178,8 +175,16 @@ function clear() {
} else {
$("#cw-text").val("");
}
$("#cw").removeClass("yellow-text");
$("#cw").removeClass("cw-avail");
var acw = localStorage.getItem("always-cw");
if (acw != "yes") {
$("#cw").removeClass("yellow-text");
$("#cw").removeClass("cw-avail");
$("#cw-text").hide();
}else{
$("#cw").addClass("yellow-text");
$("#cw").addClass("cw-avail");
$("#cw-text").show();
}
$("#rec").text(lang_no[lang]);
$("#mec").text(lang_nothing[lang]);
loadVis();