From cae4f832cfe3accb5f882f0bcc62e43cbcb7a21e Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 2 Jul 2010 15:28:32 -0700 Subject: [PATCH] hover fix --- public/javascripts/view.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/public/javascripts/view.js b/public/javascripts/view.js index 811861125..05faa5ba4 100644 --- a/public/javascripts/view.js +++ b/public/javascripts/view.js @@ -48,12 +48,13 @@ $(document).ready(function(){ $('#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); - }, 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) { event.preventDefault();