This commit is contained in:
Jeena Paradies 2013-01-07 00:43:04 +01:00
parent fee541fd1d
commit e07fa926b8
7 changed files with 62 additions and 25 deletions

View file

@ -747,6 +747,13 @@ function(jQuery, Paths, URI, HostApp, Cache) {
HostApp.openNewMessageWidow(entity, status_id, string, is_private);
}
Core.prototype.postDeleted = function(post_id, entity) {
var li = document.getElementById("post-" + post_id);
if (li) {
this.body.removeChild(li);
}
};
return Core;
});