Fixing announcement window scrolling to the first link instead of remaining at the top

This commit is contained in:
Christian 'ketura' McCarty
2024-12-07 01:13:57 -06:00
parent 2d46f50cb1
commit e11f52b193

View File

@@ -38,4 +38,6 @@ function announcementDeliveryService(comm, json) {
$("#announcement-dialog").html(json.content);
announcementDialog.dialog("open");
//Otherwise any links cause it to scroll to the link
$("#announcement-dialog").scrollTop("0");
}