Skip to content

Instantly share code, notes, and snippets.

View joelrose's full-sized avatar
🎯
Focusing

Joel Rose joelrose

🎯
Focusing
View GitHub Profile
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
function alignCalendarGraphLeft() {
calendarSVG = document.getElementsByClassName("js-calendar-graph-svg")[0]
realWidth = document.getElementsByClassName("js-calendar-graph")[0].offsetWidth
calendarSVG.setAttribute("width", realWidth)