diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-26 21:27:35 +0000 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-26 21:27:35 +0000 |
commit | 7be7e55411a9556ed08107ff5605bfb5f75435d5 (patch) | |
tree | e5ff7fd8fdbf7d5ada173e687e2096bb6bcdeef1 /pages | |
parent | 1a52bd058120e511f8b64c7651938c424d60c86b (diff) | |
download | vdr-plugin-live-7be7e55411a9556ed08107ff5605bfb5f75435d5.tar.gz vdr-plugin-live-7be7e55411a9556ed08107ff5605bfb5f75435d5.tar.bz2 |
- allows now smarter input for time, e.g. "1:5" -> "01:05"
Diffstat (limited to 'pages')
-rw-r--r-- | pages/whats_on.ecpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pages/whats_on.ecpp b/pages/whats_on.ecpp index 5015f67..a28b381 100644 --- a/pages/whats_on.ecpp +++ b/pages/whats_on.ecpp @@ -36,6 +36,7 @@ if (type == "now") { } else if (type == "next") { head = tr("What's on next?"); } else if (type == "at") { + attime = ExpandTimeString(attime); seektime = GetTimeT(attime); if (seektime - time(0) + 3600 < 0) // if wanted time is past more then 1h, then use tomorrow seektime += SECSINDAY; @@ -51,6 +52,10 @@ if (type == "now") { <& tooltip.javascript var=("domTT_styleClass") value=("domTTepg") &> <& pageelems.ajax_js &> <script type="text/javascript"><!-- + function init() + { + document.getElementById("spectime").value = "<$ attime $>"; + } function showtime(selection) { if (selection.options[selection.selectedIndex].value != "") @@ -63,7 +68,7 @@ if (type == "now") { } //--></script> </head> - <body onload="<& pageelems.infobox_start_update &>"> + <body onload="<& pageelems.infobox_start_update &>; init()"> <& pageelems.logo &> <& menu active=("whats_on") component=("whats_on.whats_on_actions")> <div class="inhalt"> |