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.

20 lines
511 B

9 years ago
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. $('#invite-team-member-modal').on('shown.bs.modal', function () {
  10. $('#itm-email').focus();
  11. })
  12. $('#set-team-name-modal').on('shown.bs.modal', function () {
  13. $('#team-name').focus();
  14. })
  15. });