Mercurial Hosting > chat
diff src/chat.js @ 38:436216d17a1b
fix edit and delete
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 12 Nov 2024 21:53:03 -0700 |
parents | 27c41f22d2a9 |
children | 471b13e6ce2c |
line wrap: on
line diff
--- a/src/chat.js Tue Nov 12 20:01:48 2024 -0700 +++ b/src/chat.js Tue Nov 12 21:53:03 2024 -0700 @@ -96,8 +96,17 @@ let currentPostId; -function deletePost(postId) { - currentPostId = postId; +function getPostId(el) { + while(true) { + let postId = el.getAttribute('post'); + if( postId ) + return postId; + el = el.parentNode; + } +} + +function deletePost(el) { + currentPostId = getPostId(el); let dialog = document.querySelector('dialog[delete_post]'); openModal(dialog); } @@ -113,8 +122,8 @@ div.outerHTML = ''; } -function editPost(postId) { - ajax(`edit_post.js?post=${postId}`); +function editPost(el) { + ajax(`edit_post.js?post=${getPostId(el)}`); } function openEditPost(postId,text) {