diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-04-02 18:32:27 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-04-02 18:32:27 +0000 |
commit | 7c458e4cfda3d82db67fb5364d784362275cd220 (patch) | |
tree | 4273fc8389a1f87ea48d403642cc83a65939a485 /pages/whats_on.ecpp | |
parent | d7c50585bded4f1b1039347b24b136ee9d4a4fb2 (diff) | |
download | vdr-plugin-live-7c458e4cfda3d82db67fb5364d784362275cd220.tar.gz vdr-plugin-live-7c458e4cfda3d82db67fb5364d784362275cd220.tar.bz2 |
- (MB) complete new remote design with imagemap
- (MB) placed progressbar after date in whatson (thx to winni)
- (MB) replaced inactive picture (thx to winni)
Diffstat (limited to 'pages/whats_on.ecpp')
-rw-r--r-- | pages/whats_on.ecpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pages/whats_on.ecpp b/pages/whats_on.ecpp index 090273c..e24aca5 100644 --- a/pages/whats_on.ecpp +++ b/pages/whats_on.ecpp @@ -77,13 +77,13 @@ if (type == "now") { </div> <div> <div class="info"><$ (epgEvent->StartTime(tr("%I:%M %p"))) $> - <$ (epgEvent->EndTime(tr("%I:%M %p"))) $></div> +% if (epgEvent->Elapsed() >= 0) { + <div class="progress"><div><& pageelems.progressbar progress=(epgEvent->Elapsed()) &></div></div> +% } <div class="title"><$ (epgEvent->Title()) $></div> <div class="short"><$ (epgEvent->ShortDescr()) $></div> <div class="description"><$ (StringWordTruncate(epgEvent->LongDescr(), 150, truncated)) $></div> <div class="more"<& tooltip.hint text=(StringEscapeAndBreak(StringWordTruncate(epgEvent->LongDescr(), 300, truncated)) + string("<br />") + string(tr("Click to view details."))) &><& tooltip.display domId=(epgEvent->Id()) &>><$ (string(tr("more")) + string(" ...")) $></div> -% if (epgEvent->Elapsed() >= 0) { - <div class="progress"><div><& pageelems.progressbar progress=(epgEvent->Elapsed()) &></div></div> -% } </div> </div> </div> |