VRFS-3146 - fixes for the get ready spiner

This commit is contained in:
Seth Call 2015-05-05 10:29:30 -05:00
parent 6c3cdda1d8
commit 8f445883fd
1 changed files with 5 additions and 2 deletions

View File

@ -335,7 +335,7 @@
}
logger.debug("updating is playing: " + isPlaying)
playbackPlaying = isPlaying;
playbackPlaying = isPlaying;
}
}
@ -388,10 +388,13 @@
}
function onPlayStartEvent() {
playbackPlaying = true;
updateIsPlaying(true);
playbackPlaying = false;
seenActivity = false;
}
function onPlayStopEvent() {
updateIsPlaying(false);
playbackPlaying = false;
}