hover fix
This commit is contained in:
parent
6ab9904f25
commit
cae4f832cf
1 changed files with 4 additions and 3 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue