Bug fix: delete thumbnail when ajax delete

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@70 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
mensonge 2008-03-12 10:35:23 +00:00
parent 5cb2d8978c
commit 0bc299ae6c

View file

@ -33,7 +33,7 @@ function deleteCancelled(ele) {
function deleteConfirmed(ele, input, response) { function deleteConfirmed(ele, input, response) {
if (deleted == false) { if (deleted == false) {
deleted = ele.parentNode.parentNode.parentNode; deleted = ele.parentNode.parentNode.parentNode.parentNode;
} }
var post = deleted; var post = deleted;
post.className = 'xfolkentry deleted'; post.className = 'xfolkentry deleted';
@ -138,4 +138,4 @@ function playerLoad() {
_playerAdd(anchors[i]); _playerAdd(anchors[i]);
} }
} }
} }