0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 12:25:31 +00:00

Simplify JS

This commit is contained in:
Pēteris Caune 2021-09-14 09:56:12 +03:00
parent d48b95c902
commit 0134077bd0
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
2 changed files with 4 additions and 9 deletions

View file

@ -1,12 +1,9 @@
$(function() {
$(".leave-project").click(function() {
var $this = $(this);
$("#leave-project-name").text($this.data("name"));
$("#leave-project-code").val($this.data("code"));
$("#leave-project-name").text(this.dataset.name);
$("#leave-project-code").val(this.dataset.code);
$('#leave-project-modal').modal("show");
return false;
});

View file

@ -1,10 +1,8 @@
$(function() {
$(".member-remove").click(function() {
var $this = $(this);
$("#rtm-email").text($this.data("email"));
$("#remove-team-member-email").val($this.data("email"));
$("#rtm-email").text(this.dataset.email);
$("#remove-team-member-email").val(this.dataset.email);
$('#remove-team-member-modal').modal("show");
return false;