-bug fixes

This commit is contained in:
mkonecny 2011-02-09 20:13:30 -05:00
parent bf4549c86d
commit 210a71c213
2 changed files with 6 additions and 4 deletions

View File

@ -108,7 +108,8 @@ function updateDataTable(){
var table = $('#nowplayingtable').dataTable();
table.fnClearTable(false);
table.fnAddData(datagridData.rows);
table.fnAddData(datagridData.rows, false);
table.fnDraw(true);
}
@ -143,7 +144,7 @@ $(document).ready(function() {
$("#datepicker").datepicker({
onSelect: function(dateText, inst)
{ updateData();}});
{ getData();}});
$("#datepicker").datepicker("setDate", new Date());
} else {
$('#day_view').click(function(){redirect('/Nowplaying/day-view')});

View File

@ -77,14 +77,15 @@ function nextShowStart(){
/* Called every "uiUpdateInterval" mseconds. */
function updateProgressBarValue(){
var showPercentDone = 0;
if (currentShow.length > 0){
var showPercentDone = (estimatedSchedulePosixTime - currentShow[0].showStartPosixTime)/currentShow[0].showLengthMs*100;
showPercentDone = (estimatedSchedulePosixTime - currentShow[0].showStartPosixTime)/currentShow[0].showLengthMs*100;
if (showPercentDone < 0 || showPercentDone > 100){
showPercentDone = 0;
currentShow = new Array();
}
$('#progress-show').attr("style", "width:"+showPercentDone+"%");
}
$('#progress-show').attr("style", "width:"+showPercentDone+"%");
var songPercentDone = 0;
if (currentSong.length > 0){