2012-01-14 18:54:41 +01:00
|
|
|
function backToMembers(){
|
2012-02-11 19:34:25 +01:00
|
|
|
$("#new_team_member").hide("slide", { direction: "right" }, 150, function(){
|
2012-01-14 18:54:41 +01:00
|
|
|
$("#team-table").show("slide", { direction: "left" }, 150, function() {
|
2012-02-11 19:34:25 +01:00
|
|
|
$("#new_team_member").remove();
|
2012-01-14 18:54:41 +01:00
|
|
|
$(".add_new").show();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|