yequari.com/themes/dreamcast/static/js/avatar.js

15 lines
386 B
JavaScript
Raw Normal View History

2024-02-27 06:34:28 +00:00
let latest = document.querySelector('#last-update');
let avatar = document.querySelector('#avatar-frame');
let latestDate = Date.parse(latest.attributes.getNamedItem('datetime').value);
let threshold = new Date();
threshold.setDate(threshold.getDate() - 7);
console.log(latestDate)
if (latestDate < threshold) {
avatar.className = 'busy';
} else {
avatar.className = 'online';
}