2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-01 11:10:54 +00:00

Adds setting to close forms using escape key

- Configurable per user
- Default = false (to preserve behavior)
This commit is contained in:
Oliver
2021-10-11 11:16:33 +11:00
parent 8d33ee6298
commit a32b5fdd64
3 changed files with 10 additions and 2 deletions

View File

@ -43,7 +43,7 @@ function createNewModal(options={}) {
});
var html = `
<div class='modal fade modal-fixed-footer modal-primary inventree-modal' role='dialog' id='modal-form-${id}'>
<div class='modal fade modal-fixed-footer modal-primary inventree-modal' role='dialog' id='modal-form-${id}' tabindex='-1'>
<div class='modal-dialog'>
<div class='modal-content'>
<div class="modal-header">
@ -111,7 +111,7 @@ function createNewModal(options={}) {
$(modal_name).modal({
backdrop: 'static',
keyboard: false,
keyboard: user_settings.FORMS_CLOSE_USING_ESCAPE,
});
// Set labels based on supplied options