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