From: Scott González Date: Wed, 16 Feb 2011 18:15:14 +0000 (-0500) Subject: Datepicker: Account for daylight saving when calculating number of days in a month... X-Git-Tag: 1.9m4~3^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c44818fccaeb4f41fdb8b8a00662169a4258b78c;p=jquery-ui.git 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 --- 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. */