| Issue 2288: | Stripping timezone information? | |
| 1 person starred this issue and may be notified of changes. | Back to list |
This line seems to be incorrect when handling timezones:
this.start = this.intervalStart = date.clone().stripTime();
It's in BasicDayView and maybe more.
If you want to preserve timezones you probably want to use:
this.intervalStart = date.clone().startOf('day');
Sep 23, 2014
#1
samedii
Oct 30, 2014
yeah, im doing this on purpose because i want `.start` to hold the date of the day, with no time (i.e. ambiguous time)
Status:
Done
|
|
| ► Sign in to add a comment |