You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
511 B

$(function() {
$(".member-remove").click(function() {
var $this = $(this);
$("#rtm-email").text($this.data("email"));
$("#remove-team-member-email").val($this.data("email"));
$('#remove-team-member-modal').modal("show");
return false;
});
$('#invite-team-member-modal').on('shown.bs.modal', function () {
$('#itm-email').focus();
})
$('#set-team-name-modal').on('shown.bs.modal', function () {
$('#team-name').focus();
})
});