Mike Blandford

Results 2 comments of Mike Blandford

Apparently on bgg.com you can leave decimal ratings such as 6.2 or 7.5. So, maybe it's better to have number pad editing.

Workaround for m.add(x, 'days'): ``` function switchZone(m, zone) { let arr = [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second()]; if(zone) { return moment.tz(arr, zone); } return moment(arr); } function safeAddDays(m, days)...