# HG changeset patch # User Josh Reed # Date 1206642277 14400 # Node ID cf629466140cd7b0d7acc0ee9542afa7fcfc7941 # Parent 3acd8e81f111db9e7c3bffdec1120e7188af9c6e Fixed a bug which caused the overview bands to get out of sync. Added a target=_blank on the links to make the info bubble links open in a new window/tab --- a/scripts/depth.js Sat Mar 15 15:13:10 2008 -0500 +++ b/scripts/depth.js Thu Mar 27 14:24:37 2008 -0400 @@ -11,7 +11,7 @@ var ether = new Timeline.LinearEther({ centersOn: ("date" in params) ? params.date : Timeline.DepthUnit.makeDefaultValue(), - interval: 1, + interval: Math.pow(10, params.intervalUnit), pixelsPerInterval: params.intervalPixels }); --- a/scripts/event-painter.js Sat Mar 15 15:13:10 2008 -0500 +++ b/scripts/event-painter.js Thu Mar 27 14:24:37 2008 -0400 @@ -22,6 +22,7 @@ if (link != null) { var a = doc.createElement("a"); a.href = link; + a.target = "_blank" a.appendChild(img); elmt.appendChild(a); } else { @@ -34,6 +35,7 @@ if (link != null) { var a = doc.createElement("a"); a.href = link; + a.target = "_blank" a.appendChild(textTitle); divTitle.appendChild(a); } else {