Spaces:
Runtime error
Runtime error
File size: 250 Bytes
cfbfaf1 |
1 2 3 4 5 6 7 8 |
function updateBigPicture() {
var existingElement = document.querySelector(".bigProfilePicture");
if (existingElement) {
var timestamp = new Date().getTime();
existingElement.src = "/file/cache/pfp_character.png?time=" + timestamp;
}
}
|