This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| <!-- | |
| /** | |
| * Converts an xs:date or xs:dateTime formatted string into the local timezone | |
| * and outputs a human-readable form of this date or date/time. | |
| * | |
| * @param {string} gCalTime is the xs:date or xs:dateTime formatted string | |
| * @return {string} is the human-readable date or date/time string | |
| */ | |
| function formatGCalTime(gCalTime) { |
NewerOlder