#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}
|
{if $_PL_activeId}
|
||||||
<option value="PL.addItem">##Add files to open Playlist##</option>
|
<option value="PL.addItem">##Add files to open Playlist##</option>
|
||||||
{else}
|
{else}
|
||||||
<option value="PL.create">##New playlist using this files##</option>
|
<option value="PL.create">##New playlist using these files##</option>
|
||||||
{/if}
|
{/if}
|
||||||
</select>
|
</select>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
|
@ -89,11 +89,11 @@ function plPrBar_create(jscomRes) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function plPrBar_show() {
|
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() {
|
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 = "";
|
document.getElementById("nowplaying").innerHTML = "";
|
||||||
}
|
}
|
||||||
{/literal}
|
{/literal}
|
||||||
|
|
|
@ -43,9 +43,9 @@
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
{if $_nowplaying}
|
{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}
|
{else}
|
||||||
<div id="nowplaying_indicator"><div id="offair">##off air##</div></div>
|
<div id="nowplaying_indicator"><div id="offair">##Off Air##</div></div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in New Issue