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
290 B

  1. $(function() {
  2. $(".leave-project").click(function() {
  3. var $this = $(this);
  4. $("#leave-project-name").text($this.data("name"));
  5. $("#leave-project-code").val($this.data("code"));
  6. $('#leave-project-modal').modal("show");
  7. return false;
  8. });
  9. });