radar2go / radar-beta

This is a public repo meant to collect issue reports on radar2go
1 stars 0 forks source link

Play/Pause button #2

Closed mturjak closed 8 years ago

mturjak commented 8 years ago

Show only the pause symbol if video started playing (on devices that support autoplay) and only the play symbol if video is paused. Now the joint-symbol button can be a bit confusing on page load.

mturjak commented 8 years ago

Added a directive on the video element binding to the playing event and manipulating a global variable with isPlaying(bool):

elem.bind('playing', function () {
    $rootScope.isPlaying(true);
});