Datepicker: Made the day of year calculator be more accurate. Fixes #6827 - Datepicker: Incorrect value for "oo" during Daylight Saving Time.

(cherry picked from commit 41205cef4b)
This commit is contained in:
Jay Merrifield 2011-05-14 18:20:06 -04:00 committed by Scott González
parent 1866905695
commit c1470492bd
2 changed files with 6 additions and 1 deletions

View File

@ -29,4 +29,9 @@ test('beforeShowDay-getDate', function() {
inp.datepicker('hide');
});
test('Ticket 6827: formatDate day of year calculation is wrong during day lights savings time', function(){
var time = $.datepicker.formatDate("oo", new Date("2010/03/30 12:00:00 CDT"));
equals(time, "089");
});
})(jQuery);

View File

@ -1181,7 +1181,7 @@ $.extend(Datepicker.prototype, {
break;
case 'o':
output += formatNumber('o',
(date.getTime() - new Date(date.getFullYear(), 0, 0).getTime()) / 86400000, 3);
Math.round((new Date(date.getFullYear(), date.getMonth(), date.getDate()).getTime() - new Date(date.getFullYear(), 0, 0).getTime()) / 86400000), 3);
break;
case 'm':
output += formatNumber('m', date.getMonth() + 1, 2);