hover fix

This commit is contained in:
Raphael 2010-07-02 15:28:32 -07:00
parent 6ab9904f25
commit cae4f832cf

View file

@ -48,12 +48,13 @@ $(document).ready(function(){
$('#flash_notice, #flash_error, #flash_alert').delay(1500).slideUp(130); $('#flash_notice, #flash_error, #flash_alert').delay(1500).slideUp(130);
$("#stream li").live('mouseover mouseout',function() { $("#stream li").live('mouseover',function() {
$(this).children(".destroy_link").fadeIn(0); $(this).children(".destroy_link").fadeIn(0);
}, function() {
$(this).children(".destroy_link").fadeOut(0);
}); });
$("#stream li").live('mouseout',function() {
$(this).children(".destroy_link").fadeOut(0);
});
$(".show_post_comments").live('click', function(event) { $(".show_post_comments").live('click', function(event) {
event.preventDefault(); event.preventDefault();