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…
Reference in New Issue