functionoid / datejs

Automatically exported from code.google.com/p/datejs
Other
0 stars 0 forks source link

Function Date.parse is overwrited in code. In IE7, the original parse function in Date can't used #95

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Code:
    Date._parse=Date.parse;Date.parse=function(s){...}

modified:
    Date._parse=Date.__parse;Date.__parse=function(s){...}

then in IE7, is OK.

Original issue reported on code.google.com by sanjun...@gmail.com on 10 Feb 2010 at 7:06