From 824fa2c0e290f16128382f7a9718d52f8ded27bb Mon Sep 17 00:00:00 2001 From: riccardo Date: Mon, 28 Feb 2011 18:32:32 +0100 Subject: [PATCH] Restored time pointer text --- telemeta/htdocs/timeside/src/ruler.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/telemeta/htdocs/timeside/src/ruler.js b/telemeta/htdocs/timeside/src/ruler.js index 796d7d3d..59e5bbb1 100644 --- a/telemeta/htdocs/timeside/src/ruler.js +++ b/telemeta/htdocs/timeside/src/ruler.js @@ -254,8 +254,8 @@ TimeSide(function($N, $J) { // } this.pointer - .setText("+") - //.setText($N.Util.makeTimeLabel(0)) + //.setText("+") + .setText($N.Util.makeTimeLabel(0)) .observe('move', this.attach(this._onPointerMove)); }, @@ -268,7 +268,7 @@ TimeSide(function($N, $J) { pixelOffset = offset / this.duration * this.width; if (this.pointer) { this.pointer.move(pixelOffset); - //this.pointer.setText($N.Util.makeTimeLabel(offset)); + this.pointer.setText($N.Util.makeTimeLabel(offset)); } this.pointerPos = offset; }, -- 2.39.5