-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// script.js | ||
|
||
// Function to set Discord avatar if the image URL is not available | ||
function setDiscordAvatar(element, discordId, defaultAvatar) { | ||
element.src = `https://cdn.discordapp.com/avatars/${discordId}/${defaultAvatar}`; | ||
} | ||
|
||
document.addEventListener("DOMContentLoaded", function() { | ||
// Check and set Discord avatars for each staff member | ||
const avatars = document.querySelectorAll('.avatar'); | ||
avatars.forEach(avatar => { | ||
avatar.onerror = function() { | ||
// If the avatar URL fails, load the specified Discord avatar | ||
const discordId = this.getAttribute('data-discord-id'); | ||
const defaultAvatar = this.getAttribute('data-default-avatar'); | ||
setDiscordAvatar(this, discordId, defaultAvatar); | ||
}; | ||
}); | ||
}); |