Bug 26794 - Item transfer modal may close automatically after a delay
Summary: Item transfer modal may close automatically after a delay
Status: NEW
Alias: None
Product: Koha
Classification: Unclassified
Component: Circulation (show other bugs)
Version: unspecified
Hardware: All All
: P5 - low enhancement (vote)
Assignee: Bugs List
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-10-23 09:16 UTC by Arthur Suzuki
Modified: 2024-04-24 14:55 UTC (History)
2 users (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Arthur Suzuki 2020-10-23 09:16:43 UTC
Hi Koha,
We got complains from users that the new item transfer modal is not convenient when using barcode scanner and mouse/keyboard is unavailable.

I've made a small javascript to add in intranetuserjs that closes this modal after a delay (here, 3 secs).

Some colleagues of mine told me I shall open a BZ to document this, there it is :

<pre>
/* Close item transfer modal after 3sec */
$('#item-transfer-modal').on('shown.bs.modal', function (e) {
  window.setTimeout(function () {$('#item-transfer-modal').modal('hide')}, 3000)
});
</pre>

Best,
Arthur from BibLibre's Koha Support
Comment 1 Katrin Fischer 2023-12-09 13:57:22 UTC
Hi Arthur, is this still an issue?
Comment 2 Owen Leonard 2024-04-24 14:55:42 UTC
This seems like a very specific set of circumstances. Aren't there lots of possible modal instances that require keyboard or mouse interaction?