remove modal window from team member managment

This commit is contained in:
Dmitriy Zaporozhets 2012-01-14 19:54:41 +02:00
parent 621491c677
commit 09b877ef29
7 changed files with 54 additions and 42 deletions

View file

@ -0,0 +1,8 @@
function backToMembers(){
$("#team_member_new").hide("slide", { direction: "right" }, 150, function(){
$("#team-table").show("slide", { direction: "left" }, 150, function() {
$("#team_member_new").remove();
$(".add_new").show();
});
});
}