Open GoogleCodeExporter opened 8 years ago
Problem is solved if you download and use the date.js file found in the
project's home page source (version: 1.0 Alpha-1, build date: 2008-05-13)
instead of the the file listed for public download (Version: 1.0 Alpha-1, Build
Date: 13-Nov-2007).
Original comment by JianHouZi
on 29 Dec 2011 at 2:58
Find the following:
if(this.meridian&&this.hour){this.hour=(this.hour<13&&this.meridian=="p")?this.h
our+12:this.hour;}
...and change to:
if(this.meridian&&this.hour){this.hour=(this.hour<12&&this.meridian=="p")?this.h
our+12:this.hour;}
Original comment by michael....@ne0ge0.com
on 1 Jul 2013 at 11:31
Fixed in current build on my fork: https://github.com/abritinthebay/datejs
Original comment by darkcr...@gmail.com
on 10 Sep 2013 at 12:02
Original issue reported on code.google.com by
JianHouZi
on 29 Dec 2011 at 2:03