videojs_rails 4.6.2 → 4.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ade6d435934e1f31123bdfe294dbcfd141a4731e
|
4
|
+
data.tar.gz: 0220359bae4496a63e2e68df63ae13584a82f969
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44e6f4163cbdfbe845b1bf73eba69c4fa954f30fed57b034ebb6ad69dd7579b233b93e759f2266bc12bd6f8cd96a745415b8e8a04aa6a173624b2dc109fbeba0
|
7
|
+
data.tar.gz: 0fb5011e60c1092cb90e3ce8f78f0732bf0fbd8638289e0d3353da338df62a5a2e4906e01b371f27b211455504eff56af591f41c9a1de57ae3871956193ece0b
|
@@ -4069,12 +4069,12 @@ vjs.Player.prototype.requestFullscreen = function(){
|
|
4069
4069
|
// when cancelling fullscreen. Otherwise if there's multiple
|
4070
4070
|
// players on a page, they would all be reacting to the same fullscreen
|
4071
4071
|
// events
|
4072
|
-
vjs.on(document, fsApi
|
4072
|
+
vjs.on(document, fsApi['fullscreenchange'], vjs.bind(this, function(e){
|
4073
4073
|
this.isFullscreen(document[fsApi.fullscreenElement]);
|
4074
4074
|
|
4075
4075
|
// If cancelling fullscreen, remove event listener.
|
4076
4076
|
if (this.isFullscreen() === false) {
|
4077
|
-
vjs.off(document, fsApi
|
4077
|
+
vjs.off(document, fsApi['fullscreenchange'], arguments.callee);
|
4078
4078
|
}
|
4079
4079
|
|
4080
4080
|
this.trigger('fullscreenchange');
|