Wizard-Vicuna-30B-Uncensored-WebUI / js /update_big_picture.js
jalder1989's picture
Upload folder using huggingface_hub
f520676
raw
history blame contribute delete
No virus
250 Bytes
function updateBigPicture() {
var existingElement = document.querySelector('.bigProfilePicture');
if (existingElement) {
var timestamp = new Date().getTime();
existingElement.src = "/file/cache/pfp_character.png?time=" + timestamp;
}
}