modal.js: Change modal cancel selector

This commit is contained in:
Yonas Habteab 2022-04-06 19:45:24 +02:00
parent 52809312d2
commit 100e852e26

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, .modal-cancel', this.onModalClose, this);
this.on('click', '#modal [data-icinga-modal-cancel]', this.onModalClose, this);
this.on('keydown', this.onKeyDown, this);
};