From 773693f636cad52001c05b7efa624189f513880a Mon Sep 17 00:00:00 2001 From: denise Date: Tue, 22 May 2012 17:47:46 -0400 Subject: [PATCH] - fixed spelling mistake on variable 'songElapsedTime' in dashboard.js --- airtime_mvc/public/js/airtime/dashboard/dashboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/public/js/airtime/dashboard/dashboard.js b/airtime_mvc/public/js/airtime/dashboard/dashboard.js index a09e909eb..44ea06970 100644 --- a/airtime_mvc/public/js/airtime/dashboard/dashboard.js +++ b/airtime_mvc/public/js/airtime/dashboard/dashboard.js @@ -76,7 +76,7 @@ function updateProgressBarValue(){ var scheduled_play_line_to_switch = scheduled_play_div.parent().find(".line-to-switch"); if (currentSong !== null){ - var songElpasedTime = 0; + var songElapsedTime = 0; songPercentDone = (estimatedSchedulePosixTime - currentSong.songStartPosixTime)/currentSong.songLengthMs*100; songElapsedTime = estimatedSchedulePosixTime - currentSong.songStartPosixTime; if (songPercentDone < 0 || songPercentDone > 100){