1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

tweaked detail text

This commit is contained in:
Luke Pulverenti 2013-03-27 10:12:05 -04:00
parent 7f3cbd761c
commit 65d7cb543b

View file

@ -480,13 +480,13 @@
else html += '<td></td>';
if (stream.Type == "Video") {
html += '<td>'+ stream.Width +' '+ stream.Height +' ('+ stream.AspectRatio +')</td>';
html += '<td>'+ stream.Width +'/'+ stream.Height +' ('+ stream.AspectRatio +')</td>';
}else {
html += '<td></td>';
}
if (stream.Channels) {
html += '<td>'+ stream.Channels +'ch '+ stream.SampleRate +'</td>';
html += '<td>'+ stream.Channels +'ch '+ stream.SampleRate +' khz</td>';
}else {
html += '<td></td>';
}