diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2006-07-07 11:43:39 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2006-07-07 11:43:39 +0200 |
commit | f04236038448cce41ff2af10e2d0ccfcd8df378a (patch) | |
tree | 33979f482e9c11cf86a0ba10c3d0ed47a1e3d1a4 /template/default/prog_timeline.html | |
parent | ada389d94b34bfef75be700a6cb4e3f05ee102ff (diff) | |
download | vdradmin-am-3.4.6rc.tar.gz vdradmin-am-3.4.6rc.tar.bz2 |
2006-07-07: 3.4.6rcv3.4.6rc
- Replaced: Makefiles by make.sh (run "./make.sh" for usage information").
- Removed: LinVDR logo.
- Changed: colors in timeline.
- Fixed: layout problems in prog_summary detail view (Reported by Sven Soltau).
- Fixed: moving forward/backward at the end/start of a month (Reported by foobar42).
Diffstat (limited to 'template/default/prog_timeline.html')
-rw-r--r-- | template/default/prog_timeline.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/template/default/prog_timeline.html b/template/default/prog_timeline.html index 406fe0d..69d3fff 100644 --- a/template/default/prog_timeline.html +++ b/template/default/prog_timeline.html @@ -39,6 +39,7 @@ margin:0px;
text-align:left;
table-layout:fixed;
+ overflow:hidden;
}
td.prgname {
margin: 0 2px;
@@ -189,7 +190,7 @@ <td class="col_other">
<%! What's on: !%>
<select name="Auswahl" class="submit" onChange="Go(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)" width="100">
- <option value="<?% nowurl %?>"></option>
+ <option value="<?% nowurl %?>">-</option>
<?% select_now = (now == date.format(date.now, '%H:%M')) %?>
<option value="<?% nowurl %?>" <?% "selected" IF select_now %?>><%! now !%></option>
<?% FOREACH timer = times %?>
@@ -209,6 +210,13 @@ var tl = new TimeLine(<?% now_sec %?>, "<?% nowurl %?>", <?% px_per_min %?>, <?% end_min %?>);
BuildContent();
</script>
+ <noscript>
+ <p>
+ <center>
+ <h1><%! You need JavaScript to use the timeline! !%></h1>
+ </center>
+ </p>
+ </noscript>
</form>
</body>
</html>
|