Spaces:
Running
Running
File size: 250 Bytes
1d777c4 |
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;
}
}
|