lots of stuff

This commit is contained in:
Lazy Hippopotamus
2024-04-09 20:09:03 -04:00
parent c342ce4a5b
commit fb6eb1d682
37 changed files with 666 additions and 145 deletions

View File

@@ -18,4 +18,7 @@ Array.from(document.getElementsByClassName("ytframe")).forEach(frame => { // res
var w2 = frame.getBoundingClientRect().width;
frame.width = w2 + "px";
frame.height = frame.getBoundingClientRect().height * w2 / w1;
});
});
document.getElementById("gregorian").innerText = new Date().toLocaleDateString('en-us', { weekday: "long", year: "numeric", month: "long", day: "numeric" });
document.getElementById("hebrew").innerText = new Date().toLocaleDateString('en-u-ca-hebrew', { weekday: "long", year: "numeric", month: "long", day: "numeric" });