1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-14 11:23:30 +02:00
This commit is contained in:
Gary Katsevman 2013-03-11 18:07:08 -04:00
parent c94ceca337
commit cbcff6a168

View File

@ -483,7 +483,7 @@ vjs.Player.prototype.play = function(){
// http://dev.w3.org/html5/spec/video.html#dom-media-pause
vjs.Player.prototype.pause = function(){
this.trigger(type:'showBigPlayButton', target: this.el_});
this.trigger({type:'showBigPlayButton', target: this.el_});
this.techCall('pause');
return this;
};