$(window).on("load", function () {
$(function () {
$(".thumb").Lazy({
scrollDirection: "vertical",
effect: "fadeIn",
visibleOnly: true,
appendScroll: $(".contents-wrapper")[0],
});
});
sasahyou_load();
sasahyou.forEach((sasa) => {
$(".contents-wrapper").append(`
`);
$("#menu-tag-view .list").append(``);
});
sappyou_load();
sappyou.forEach((tanzaku) => {
$("#menu-file-view .list").append(`${tanzaku.name}
`);
});
});
$(document).on("submit", "#menu-add form", function (e) {
e.preventDefault();
let resp = tdb_query("$TFM", 18, $("#new-name").val());
if (!resp.status) {
alert("Something went wrong!");
return;
}
menu_add_close();
location.reload(true);
});