1
0
mirror of https://github.com/videojs/video.js.git synced 2024-11-24 08:42:25 +02:00

Added listeners for enter/exit full screen/window.

This commit is contained in:
Steve Heffernan 2011-02-17 21:14:11 -08:00
parent f31aec1717
commit 88ce51a175

View File

@ -109,6 +109,7 @@ VideoJS.fn.extend({
} else {
this.enterFullWindow();
}
this.triggerListeners("enterFullScreen");
return this;
},
@ -116,6 +117,7 @@ VideoJS.fn.extend({
if (!this.supportsFullScreen()) {
this.exitFullWindow();
}
this.triggerListeners("exitFullScreen");
// Otherwise Shouldn't be called since native fullscreen uses own controls.
return this;
},
@ -134,6 +136,7 @@ VideoJS.fn.extend({
_V_.addClass(this.box, "vjs-fullscreen");
// Resize the box, controller, and poster
this.positionAll();
this.triggerListeners("enterFullWindow");
},
exitFullWindow: function(){
@ -146,5 +149,6 @@ VideoJS.fn.extend({
_V_.removeClass(this.box, "vjs-fullscreen");
// Resize the box, controller, and poster to original sizes
this.positionAll();
this.triggerListeners("exitFullWindow");
}
});