Hello,

> Is there a way to NOT show the day, month and GMT text which appears
> in light gray underneath the text in the event bubble?
You can overwrite the function which formats those labels. Add something
along those lines of Javascript after including the timeline files:

Timeline.GregorianDateLabeller.labelPrecise = function(date) {
  date = SimileAjax.DateTime.removeTimeZoneOffset(date, this._timeZone);

  return '' + date.getFullYear() + '-' +
              (date.getMonth() + 1) + '-' +
              date.getDate();
}

As it is written, it should display the dates like 2009-07-28; adjust
the last line according to your desired format.

Best,
Jonas

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to