forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/assets/js/userpage.js

13 lines
430 B
JavaScript
Raw Normal View History

2022-07-16 21:00:02 +00:00
function badge_timestamp(t) {
2022-11-22 22:36:33 +00:00
const date = formatDate(new Date(t.dataset.until*1000));
2022-09-04 23:15:37 +00:00
const text = t.getAttribute("data-bs-original-title")
t.setAttribute("data-bs-original-title", `${text} ${date.toString()}`);
t.removeAttribute("data-onmouseover")
}
2023-10-18 20:20:35 +00:00
addEventListener("load", () => {
const el = document.getElementById("desktopUserBanner")
const style = el.getAttribute("data-style")
el.setAttribute("style", style)
});