diaspora/app/views/post_visibilities/update.js.erb
Maxwell Salzberg 1fa01a811e DG MS; updated text to reflect the fact that hiding posts now
mutes notifications as well
2011-09-09 10:52:19 -07:00

10 lines
381 B
Text

var target = $("#<%= @post.guid %>")
target.find(".sm_body").toggleClass("hidden");
target.find(".undo_text").toggleClass("hidden");
target.find(".hide_loader").toggleClass("hidden");
var hide_icon = target.find(".stream_element_delete")
if (target.find(".undo_text").hasClass("hidden")) {
hide_icon.toggleClass("hidden");
target.find(".hide_loader").toggleClass("hidden");
}