webbyuu / js /update_big_picture.js
NahFam13's picture
z2
76a12b2 verified
raw
history blame contribute delete
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;
}
}