diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-02-16 13:15:14 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-02-16 13:15:14 -0500 |
commit | c44818fccaeb4f41fdb8b8a00662169a4258b78c (patch) | |
tree | 4a0696819577b2c7515724466a01354807cbce15 /ui | |
parent | c94ec23b263464af3dfa4533eff45fc0d6fef954 (diff) | |
download | jquery-ui-c44818fccaeb4f41fdb8b8a00662169a4258b78c.tar.gz jquery-ui-c44818fccaeb4f41fdb8b8a00662169a4258b78c.zip |
Datepicker: Account for daylight saving when calculating number of days in a month. Fixes #6978 - In Calender for march 2011 dates showing till 5th only.
Thanks jomyjohn
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.datepicker.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.datepicker.js b/ui/jquery.ui.datepicker.js index ff6ebad52..c23984530 100644 --- a/ui/jquery.ui.datepicker.js +++ b/ui/jquery.ui.datepicker.js @@ -1656,7 +1656,7 @@ $.extend(Datepicker.prototype, { /* Find the number of days in a given month. */ _getDaysInMonth: function(year, month) { - return 32 - new Date(year, month, 32).getDate(); + return 32 - this._daylightSavingAdjust(new Date(year, month, 32)).getDate(); }, /* Find the day of the week of the first of a month. */ |