I'm using a version of theme_views_view_timeline that allows for a view argument to define its initial date.

  if (is_numeric(arg(1))) {
    $initial_date = arg(1);
  }
  
  else if ($initial_focus == 'today') {
    $initial_date = time();
  }
  // etc etc etc

In conjunction with the custom breadcrumbs module, this allows you to set the path of a timeline node to include its date. Then if someone navigates back to the timeline from the breadcrumbs, the view will be centered on the event they were just viewing.

It can also allow you to link directly into the timeline at a particular point.

Hope someone finds this useful.

Comments

xamanu’s picture

Version: 5.x-1.0 » 6.x-2.x-dev
Status: Needs review » Fixed

This has been implemented nicely for the 2.x branch of the timeline module.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.