This commit is contained in:
floppydiskette 2024-11-17 13:18:43 +00:00
commit fb56268b9b
No known key found for this signature in database
3 changed files with 17 additions and 17 deletions

View file

@ -4,11 +4,11 @@ if (christmas) {
var head = document.getElementsByTagName('head')[0];
var snowJS = document.createElement("script");
snowJS.type = "text/javascript";
snowJS.src = "/res/js/snowstorm.js";
snowJS.src = "./res/js/snowstorm.js";
head.appendChild(snowJS);
const profileImage = document.querySelector("img.profile-image");
profileImage.src = "/res/images/profile-christmas.jpg";
profileImage.src = "./res/images/profile-christmas.jpg";
}
function isItChristmas() {