| Issue 746: | date format options - timezone offset | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Related to the ability to support timezones, we show the current difference from GMT in the title. It helps to eliminate some of the confusion.
e.g. "December 2010 [GMT-5]"
The following addition to the dateFormatters provides the ability to include the offset in the title and other strings. It would be great to include this or something like it.
O: function (d) { return (-d.getTimezoneOffset() < 0 ? '-' : '+') +(Math.abs(d.getTimezoneOffset() / 60)); },
Thanks!
Dec 26, 2010
Project Member
#1
adamrs...@gmail.com
Status:
WontFix
|
|
| ► Sign in to add a comment |