File size: 250 Bytes
f520676
 
 
 
 
 
 
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;
  }
}