#1977 Campcaster-Web: Change 'On Air' text to 'Playing Scheduled Item'
This commit is contained in:
parent
2461111397
commit
5e5e380ac2
|
@ -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">
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue