#1977 Campcaster-Web: Change 'On Air' text to 'Playing Scheduled Item'

This commit is contained in:
sebastian 2010-02-10 19:17:58 +00:00
parent 2461111397
commit 5e5e380ac2
3 changed files with 5 additions and 5 deletions

View File

@ -64,7 +64,7 @@
{if $_PL_activeId}
<option value="PL.addItem">##Add files to open Playlist##</option>
{else}
<option value="PL.create">##New playlist using this files##</option>
<option value="PL.create">##New playlist using these files##</option>
{/if}
</select>
<script type="text/javascript">

View File

@ -89,11 +89,11 @@ function plPrBar_create(jscomRes) {
}
function plPrBar_show() {
document.getElementById("nowplaying_indicator").innerHTML = '<div id="onair">##on air##</div>';
document.getElementById("nowplaying_indicator").innerHTML = '<div id="onair">##Playing Scheduled Item##</div>';
}
function plPrBar_hide() {
document.getElementById("nowplaying_indicator").innerHTML = '<div id="offair">##off air##</div>';
document.getElementById("nowplaying_indicator").innerHTML = '<div id="offair">##Off Air##</div>';
document.getElementById("nowplaying").innerHTML = "";
}
{/literal}

View File

@ -43,9 +43,9 @@
<td>
{if $_nowplaying}
<div id="nowplaying_indicator"><div id="onair">##on air##</div></div>
<div id="nowplaying_indicator"><div id="onair">##Playing Scheduled Item##</div></div>
{else}
<div id="nowplaying_indicator"><div id="offair">##off air##</div></div>
<div id="nowplaying_indicator"><div id="offair">##Off Air##</div></div>
{/if}
</td>