* Add @fileoverview JSDoc comment

* Move static methods down to the bottom of the file to circumvent
  a strange bug that prevents documentation from being generated.
This commit is contained in:
hns 2007-02-09 11:00:07 +00:00
parent da7bdcfba0
commit 486e9a5836
4 changed files with 130 additions and 119 deletions

View file

@ -9,11 +9,14 @@
* Copyright 1998-2005 Helma Software. All Rights Reserved.
*
* $RCSfile: Date.js,v $
* $Author: czv $
* $Revision: 1.2 $
* $Date: 2006/04/24 07:02:17 $
* $Author: stefanp $
* $Revision: 1.3 $
* $Date: 2006/08/21 15:57:05 $
*/
/**
* @fileoverview Adds useful methods to the JavaScript Date type.
*/
Date.ONESECOND = 1000;
Date.ONEMINUTE = 60 * Date.ONESECOND;