We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
8876aa3 is buggy as it doesn't consider the event date.
All areas that use moment().isDST() should do something like moment(event_start_date).isDST() instead.
moment().isDST()
moment(event_start_date).isDST()
This will become confusing as we approach a DST time and have events crossing the threshold.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
8876aa3 is buggy as it doesn't consider the event date.
All areas that use
moment().isDST()
should do something likemoment(event_start_date).isDST()
instead.This will become confusing as we approach a DST time and have events crossing the threshold.
The text was updated successfully, but these errors were encountered: