pawanjain111 / jquery-datepicker

Automatically exported from code.google.com/p/jquery-datepicker
0 stars 0 forks source link

Bug in FF3 for linux with date: Marth 1984 #68

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Sory for my English!

In linux FireFox-3 change year - 1984 and month - Marth. I see only 4 days.

I lean this problem and it not datepicker bug. Because method
"_getDaysInMonth" return "1". I don't no why, but I know how fixed this
problem.

May be you can do next fix:

_getDaysInMonth: function(year, month) {
        return 33 - new Date(year, month, 33).getDate();
    },

Thank you.

Original issue reported on code.google.com by anton...@ukr.net on 14 Apr 2009 at 12:03

GoogleCodeExporter commented 8 years ago
Thanks for the patch. I will try to integrate it into the date picker soon and 
test
that there are no problems,

Cheers,

Kelvin :)

Original comment by kelvin.l...@gmail.com on 29 Apr 2009 at 8:45