Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Y.Calendar.selectDates fails when passed the maximumDate with minutes/seconds #1731

Closed
mairatma opened this issue Mar 27, 2014 · 0 comments
Closed
Assignees
Labels

Comments

@mairatma
Copy link
Contributor

#1030 reported a similar bug a few months ago, where calling selectDates with the minimum date wouldn't work, and #1092 fixed it by always setting the date's hour to 12, which is equal to the calendar module's dates.

A similar issue is still happening with the maximumDate in the current (3.15.0) YUI version though. It happens if Y.Calendar.selectDates receives the maximumDate with minutes/seconds/milliseconds in it. For example: "Thu Jul 25 2013 13:20:13". The fix in #1092 transforms this example date to "Thu Jul 25 2013 12:20:13", but that still won't pass the maximumDate check, so the date is not set.

I believe that to fix this we can just replace the:

oDate.setHours(12);

line with

oDate = this._normalizeTime(oDate);

since that will also set minutes/seconds/milliseconds to 0.

If you guys prefer I can do this myself and send a pull request for it, I'm just opening this issue first since I haven't contributed to YUI before.

mairatma added a commit to mairatma/yui3 that referenced this issue Apr 3, 2014
mairatma added a commit to mairatma/yui3 that referenced this issue Apr 3, 2014
…e with minutes/seconds

Commiting the build/ files separately from src/ files.
mairatma added a commit to mairatma/yui3 that referenced this issue Apr 3, 2014
…e with minutes/seconds

Fixing the issue explained in yui#1731, which causes selectDates to fail when the user passes the maximumDate with minutes or seconds to it. The calendar code is already resetting the hours part of the date's time, but this diff resets everything to make sure that date selection doesn't take the date's time into account anymore.
@okuryu okuryu self-assigned this Apr 4, 2014
@okuryu okuryu removed the 3 - Review label Apr 16, 2014
@ybldr ybldr closed this as completed in 87558dc Apr 16, 2014
jonmak08 pushed a commit to jonmak08/yui3 that referenced this issue Aug 2, 2017
…e with minutes/seconds

Fixing the issue explained in yui#1731, which causes selectDates to fail when the user passes the maximumDate with minutes or seconds to it. The calendar code is already resetting the hours part of the date's time, but this diff resets everything to make sure that date selection doesn't take the date's time into account anymore.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants