mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Auto-scroll modal to top when opened
This commit is contained in:
parent
5f19b37c6e
commit
59ea4a3a24
@ -1,4 +1,9 @@
|
||||
function launchModalForm(modal, url, data) {
|
||||
|
||||
$(modal).on('shown.bs.modal', function () {
|
||||
$(modal + ' .modal-content').scrollTop(0); // animate({ scrollTop: 0 }, 'fast');
|
||||
});
|
||||
|
||||
$.ajax({
|
||||
url: url, // Where to request the data from
|
||||
type: 'get', // GET request
|
||||
|
Loading…
Reference in New Issue
Block a user