Chad Burt wrote:
> Hello,
> I am using timeline to display a single type of event. It deals with 
> temporal coverage of a single scientific dataset so no info bubble is 
> needed. Actually, the bubble is quite annoying when trying to drag 
> forward and backward on the timeline.
>
> Is there any way to disable the info bubbles? When using events with 
> just a single start date it is fine but when specifying a start and 
> end date it becomes a problem. Is there a way to make dragging the 
> event drag the band as well or will this just be a "dead space" when 
> info bubbles are disabled?
>
> Thanks, this is a great resource btw
> here's how im using it 
> http://pisco-dev01.msi.ucsb.edu:3001/nearshore_downcasts
Hi Chad,

It's possible, with some javascript. Look at the bottom of this file:
    http://simile.mit.edu/timeline/api/scripts/painters.js
You need to add some javascript in your html page after you include 
timeline-api.js to override the click handlers, e.g.,

Timeline.DurationEventPainter.prototype._onClickDurationEvent = function(icon, 
domEvt, evt) {
  return true;
};

Hope that helps,

David
_______________________________________________
General mailing list
[email protected]
http://simile.mit.edu/mailman/listinfo/general

Reply via email to