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.

12 lines
294 B

9 years ago
  1. $(function() {
  2. $(".member-remove").click(function() {
  3. var $this = $(this);
  4. $("#rtm-email").text($this.data("email"));
  5. $("#remove-team-member-email").val($this.data("email"));
  6. $('#remove-team-member-modal').modal("show");
  7. return false;
  8. });
  9. });