mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 13:46:11 +10:00
9 lines
264 B
JavaScript
9 lines
264 B
JavaScript
function backToMembers(){
|
|
$("#new_team_member").hide("slide", { direction: "right" }, 150, function(){
|
|
$("#team-table").show("slide", { direction: "left" }, 150, function() {
|
|
$("#new_team_member").remove();
|
|
$(".add_new").show();
|
|
});
|
|
});
|
|
}
|