a tiny change should make the things fadeout
This commit is contained in:
parent
94ce3b3666
commit
593f620216
1 changed files with 2 additions and 1 deletions
|
|
@ -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')
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue