summaryrefslogtreecommitdiff
path: root/template/default/timeline.js
diff options
context:
space:
mode:
authorAndreas Mair <amair.sob@googlemail.com>2008-12-13 09:09:54 +0100
committerAndreas Mair <amair.sob@googlemail.com>2008-12-13 09:09:54 +0100
commitb5bb9b571134454e2507bce56211f68e15fb276e (patch)
treed723e1916c9a19cb2d00592d7728ed7f7f4a21b9 /template/default/timeline.js
parent0f5234f89bea92523d7e8e3ec72bd5cb25dec19f (diff)
downloadvdradmin-am-3.6.3.tar.gz
vdradmin-am-3.6.3.tar.bz2
2008-12-13: 3.6.3v3.6.3
- Updated: Spanish translation (Submitted by Rüdiger Jung). - Changed: Process name to "vdradmind" (Based on patch submitted by Ville Skyttä). - Updated: Italian translation (Submitted by Diego Pierotto). - Changed executable's name from "vdradmind.pl" to "vdradmind". - Updated: Dutch translation (Submitted by Roel Koelewijn). - Added Play/Stop/FastForward/etc. buttons to remote controls (based on patch by L.Locke @vdr-portal.de). - Added: epgsearch templates can be created, modified and deleted. - Read used character encoding in SVDRP connections and recode result to the encoding used in the current locale. - Minor bugfixes and improvements.
Diffstat (limited to 'template/default/timeline.js')
-rw-r--r--template/default/timeline.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/template/default/timeline.js b/template/default/timeline.js
index 4daf797..72a654b 100644
--- a/template/default/timeline.js
+++ b/template/default/timeline.js
@@ -224,7 +224,7 @@ function BuildHeader()
{
diff_sec = tl.first_sec;
}
- W('<a href="' + tl.now_url + '&amp;time=' + format_date('%H:%M', diff_sec) + '&amp;frame=' + tl.first_sec + '">');
+ W('<a href="' + tl.now_url + '&amp;time=' + format_date('%H:%M', diff_sec) + '&amp;frame=' + tl.first_sec + '" title="' + format_date('%H:%M', diff_sec) + '">');
W('<img src="bilder/pfeile_nachlinks.png" border="0" />');
W('</a>');
}
@@ -235,7 +235,7 @@ function BuildHeader()
else
{
var diff_sec = tl.end_sec;
- W('<a href="' + tl.now_url + '&amp;time=' + format_date('%H:%M', diff_sec) + '&amp;frame=' + tl.first_sec + '">');
+ W('<a href="' + tl.now_url + '&amp;time=' + format_date('%H:%M', diff_sec) + '&amp;frame=' + tl.first_sec + '" title="' + format_date('%H:%M', diff_sec) + '">');
W('<img src="bilder/pfeile_nachrechts.png" border="0" />');
W('</a>');
}