modal.js: Register onModalClose event also on .modal-cancel selector

This commit is contained in:
Yonas Habteab 2022-03-28 19:00:22 +02:00
parent 8b510e3163
commit c2b475585f

View File

@ -23,7 +23,7 @@
this.on('change', '#modal form input.autosubmit', this.onFormAutoSubmit, this);
this.on('click', '[data-icinga-modal]', this.onModalToggleClick, this);
this.on('mousedown', '#layout > #modal', this.onModalLeave, this);
this.on('click', '.modal-header > button', this.onModalClose, this);
this.on('click', '.modal-header > button, .modal-cancel', this.onModalClose, this);
this.on('keydown', this.onKeyDown, this);
};