a tiny change should make the things fadeout

This commit is contained in:
ilya 2010-09-12 21:57:15 -07:00
parent 94ce3b3666
commit 593f620216

View file

@ -37,6 +37,7 @@ $(function() {
ui.draggable.css('background-color','orange'); ui.draggable.css('background-color','orange');
} }
$(this).closest("ul").append(ui.draggable); $(this).closest("ul").append(ui.draggable);
} }
}); });
@ -49,7 +50,7 @@ $(function() {
data: {"accept" : false } data: {"accept" : false }
}); });
alert("Removed Request, proably want an undo countdown.") alert("Removed Request, proably want an undo countdown.")
ui.draggable[0].fadeOut("slow") $(ui.draggable[0]).fadeOut('slow')
} }
} }