CC-2438: Add a button to listen to the stream immediately

-Streams selectable by their description
-Repeatedly clicking on the ON-AIR, focus()es the window
 instead of reloading it.
This commit is contained in:
martin 2011-09-30 12:58:49 -04:00
parent 0613c6db3a
commit a31920e982
2 changed files with 6 additions and 3 deletions

View file

@ -56,7 +56,7 @@ $(document).ready(function(){
if ($type == "ogg")
$type = "oga";
$label = "Stream ".substr($id, 1)." (".$streamData["${id}_bitrate"]." Kbit/s)";
$label = $streamData["${id}_description"]." (".$streamData["${id}_bitrate"]." Kbit/s)";
echo sprintf("<option class='stream' value='%s' data-url='%s' data-type='%s'>%s</option>", $id, $url, $type, $label);
}
?>