1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-02 06:32:07 +02:00

Merge pull request #103 from rkyrychuk/patch-3

Auto rewind on big button play click
This commit is contained in:
Heff 2011-12-21 18:10:19 -08:00
commit b31eba988b

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();
}
});