mirror of
https://github.com/oobabooga/textgen.git
synced 2026-07-23 11:20:54 -05:00
7 lines
181 B
JavaScript
7 lines
181 B
JavaScript
function updateBigPicture() {
|
|
var existingElement = document.querySelector(".bigProfilePicture");
|
|
if (existingElement) {
|
|
existingElement.src = getProfilePictureUrl();
|
|
}
|
|
}
|