From 59ea4a3a24b618bcd96279b4ae0b7672931903ce Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 26 Apr 2018 18:19:41 +1000 Subject: [PATCH] Auto-scroll modal to top when opened --- InvenTree/static/script/modal_form.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/InvenTree/static/script/modal_form.js b/InvenTree/static/script/modal_form.js index 4196d0c496..c581f669a8 100644 --- a/InvenTree/static/script/modal_form.js +++ b/InvenTree/static/script/modal_form.js @@ -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