2022-07-16 21:00:02 +00:00
|
|
|
function togglePostEdit(id){
|
2023-08-23 21:57:39 +00:00
|
|
|
body = document.getElementById("post-body");
|
|
|
|
title = document.getElementById("post-title");
|
|
|
|
form = document.getElementById("edit-post-body-"+id);
|
2022-07-16 21:00:02 +00:00
|
|
|
|
|
|
|
body.classList.toggle("d-none");
|
|
|
|
title.classList.toggle("d-none");
|
|
|
|
form.classList.toggle("d-none");
|
2022-11-11 14:47:51 +00:00
|
|
|
|
2023-08-23 21:57:39 +00:00
|
|
|
box = document.getElementById("post-edit-box-"+id);
|
2022-11-11 14:47:51 +00:00
|
|
|
autoExpand(box);
|
2023-05-14 16:33:59 +00:00
|
|
|
markdown(box);
|
2023-08-23 21:57:39 +00:00
|
|
|
box = document.getElementById("post-edit-title");
|
2022-07-16 21:00:02 +00:00
|
|
|
autoExpand(box);
|
2023-07-01 00:13:57 +00:00
|
|
|
|
|
|
|
close_inline_speed_emoji_modal();
|
2022-11-11 14:47:51 +00:00
|
|
|
};
|
2023-08-06 03:26:16 +00:00
|
|
|
|
|
|
|
document.getElementById('post-edit-title').addEventListener('keydown', (e) => {
|
2023-08-06 03:33:34 +00:00
|
|
|
if (e.key === "Enter") e.preventDefault();
|
2023-08-06 03:26:16 +00:00
|
|
|
})
|