touchstorm
Results
1
comments of
touchstorm
We fixed this by adjust all the Date.UTC(...) nonsense that is going on. `return new Date(Date.UTC(this.activeYearStart, this.startNextActiveMonth, 1)).getDay(); // fails` `return new Date(this.activeYearStart, this.activeMonthStart, 1, 0, 0, 0).getDay(); // good`