From cc49c717533c2422e0327d71613d6500ab5fcd57 Mon Sep 17 00:00:00 2001 From: Techywarrior Date: Mon, 29 Apr 2013 19:28:51 -0700 Subject: [PATCH] remove .00 from formatted bitrate values --- dashboard-ui/scripts/Itemdetailpage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard-ui/scripts/Itemdetailpage.js b/dashboard-ui/scripts/Itemdetailpage.js index 5352912434..158ce2683e 100644 --- a/dashboard-ui/scripts/Itemdetailpage.js +++ b/dashboard-ui/scripts/Itemdetailpage.js @@ -424,13 +424,13 @@ html += '
  • Aspect Ratio ' + stream.AspectRatio + '
  • '; } if (stream.BitRate) { - html += '
  • Bitrate ' + stream.BitRate + '
  • '; + html += '
  • Bitrate ' + stream.BitRate + '
  • '; } if (stream.Channels) { html += '
  • Channels ' + stream.Channels + '
  • '; } if (stream.SampleRate) { - html += '
  • Sample Rate ' + stream.SampleRate + '
  • '; + html += '
  • Sample Rate ' + stream.SampleRate + '
  • '; } var framerate = stream.AverageFrameRate || stream.RealFrameRate;