deleted posts are collapsed clicking on them expands them, closes #138

v1.18.x
Baris Usakli 12 years ago
parent ac3fe1fc6f
commit c1c9d24ee5

@ -21,6 +21,13 @@
&.deleted { &.deleted {
-moz-opacity: 0.30; -moz-opacity: 0.30;
opacity: 0.30; opacity: 0.30;
height:30px;
overflow-y:hidden;
}
&.deleted-expanded {
height:100%;
overflow-y:default;
} }
} }

@ -209,6 +209,10 @@
app.loadMorePosts(tid); app.loadMorePosts(tid);
} }
}); });
$('.post-container').on('click', '.deleted', function(ev) {
$(this).toggleClass('deleted-expanded');
});
}); });
var reply_fn = function() { var reply_fn = function() {

Loading…
Cancel
Save