disable confirm delete button after click
This commit is contained in:
parent
689e6befd5
commit
c8e416fe03
1 changed files with 6 additions and 0 deletions
|
@ -120,5 +120,11 @@ $(document).ready( function() {
|
|||
$(this).parent().siblings(".entity-desc__content").removeClass('entity-desc__content--folded');
|
||||
$(this).parent(".entity-desc__unfold-button").remove();
|
||||
});
|
||||
|
||||
// disable delete mark button after click
|
||||
const confirmDeleteMarkButton = $('.confirm-modal__confirm-button > input');
|
||||
confirmDeleteMarkButton.click(function() {
|
||||
confirmDeleteMarkButton.prop("disabled", true);
|
||||
});
|
||||
|
||||
});
|
Loading…
Add table
Reference in a new issue