update supporters

This commit is contained in:
Azgaar 2022-05-23 20:20:59 +03:00
parent b144191621
commit 8cb556262b
3 changed files with 3 additions and 3 deletions

View file

@ -75,7 +75,7 @@ document
// show popup with a list of Patreon supportes (updated manually, to be replaced with API call)
async function showSupporters() {
const {supporters} = await import("../dynamic/supporters.js");
const {supporters} = await import("../dynamic/supporters.js?v=23052022");
alertMessage.innerHTML = "<ul style='column-count: 5; column-gap: 2em'>" + supporters.map(n => `<li>${n}</li>`).join("") + "</ul>";
$("#alert").dialog({resizable: false, title: "Patreon Supporters", width: "54vw", position: {my: "center", at: "center", of: "svg"}});
}