mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 13:06:45 +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) {
|
function launchModalForm(modal, url, data) {
|
||||||
|
|
||||||
|
$(modal).on('shown.bs.modal', function () {
|
||||||
|
$(modal + ' .modal-content').scrollTop(0); // animate({ scrollTop: 0 }, 'fast');
|
||||||
|
});
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: url, // Where to request the data from
|
url: url, // Where to request the data from
|
||||||
type: 'get', // GET request
|
type: 'get', // GET request
|
||||||
|
Loading…
x
Reference in New Issue
Block a user