load sponsors in ajax to account for users with slower internet connection.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-10-14 09:42:26 -06:00
parent 29a90fe814
commit de32fe4d85
7 changed files with 39 additions and 26 deletions

View File

@@ -157,4 +157,10 @@ function handleDefaultReminderInputKeyDown() {
if (event.which == 13) {
updateSettings();
}
}
function loadSponsors() {
$.get('/Home/Sponsors', function (data) {
$("#sponsorsContainer").html(data);
})
}