rDrama/files/assets/js/edit_post.js

16 lines
432 B
JavaScript
Raw Normal View History

2022-07-16 21:00:02 +00:00
function togglePostEdit(id){
body=document.getElementById("post-body");
title=document.getElementById("post-title");
form=document.getElementById("edit-post-body-"+id);
body.classList.toggle("d-none");
title.classList.toggle("d-none");
form.classList.toggle("d-none");
2022-11-11 14:47:51 +00:00
box=document.getElementById("post-edit-box-"+id);
autoExpand(box);
markdown(box);
2022-11-11 14:47:51 +00:00
box=document.getElementById("post-edit-title");
2022-07-16 21:00:02 +00:00
autoExpand(box);
2022-11-11 14:47:51 +00:00
};