1
0
mirror of https://github.com/videojs/video.js.git synced 2024-11-30 09:06:49 +02:00

Auto rewind on big button play click

This commit is contained in:
rkyrychuk 2011-12-15 23:58:35 +02:00
parent 6945be3d6e
commit 99fa329bc5

1
src/controls.js vendored
View File

@ -167,6 +167,7 @@ _V_.BigPlayButton = _V_.Button.extend({
},
onClick: function(){
this.player.currentTime(0);
this.player.play();
}
});