mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2026-04-06 15:13:38 +00:00
6 lines
181 B
JavaScript
6 lines
181 B
JavaScript
function updateBigPicture() {
|
|
var existingElement = document.querySelector(".bigProfilePicture");
|
|
if (existingElement) {
|
|
existingElement.src = getProfilePictureUrl();
|
|
}
|
|
}
|