videojs_rails 4.11.2 → 4.11.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: ced5809db6899f0c9e1d322d6cdb3ae59b860782
|
|
4
|
+
data.tar.gz: 8eb0f572a252332085909cc3d628eb280fccfc8c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c93ef8b89b8be0a91199e2d74285582e98bac3266a8b093f484a9441ec4238db82255e02b145fb383705e7a4192fb6270c1a83bedd526de01483696ef180604
|
|
7
|
+
data.tar.gz: 1719e4faa8b04510fd53265df4a340b4e49821086e2a6c559bb44d1abc1f579c364d9205f50a0ec0690b41e6232975ce204acdcd2422c7792ae4f070304c7402
|
|
@@ -3409,7 +3409,6 @@ vjs.MenuButton.prototype.onClick = function(){
|
|
|
3409
3409
|
};
|
|
3410
3410
|
|
|
3411
3411
|
vjs.MenuButton.prototype.onKeyPress = function(event){
|
|
3412
|
-
event.preventDefault();
|
|
3413
3412
|
|
|
3414
3413
|
// Check for space bar (32) or enter (13) keys
|
|
3415
3414
|
if (event.which == 32 || event.which == 13) {
|
|
@@ -3418,11 +3417,13 @@ vjs.MenuButton.prototype.onKeyPress = function(event){
|
|
|
3418
3417
|
} else {
|
|
3419
3418
|
this.pressButton();
|
|
3420
3419
|
}
|
|
3420
|
+
event.preventDefault();
|
|
3421
3421
|
// Check for escape (27) key
|
|
3422
3422
|
} else if (event.which == 27){
|
|
3423
3423
|
if (this.buttonPressed_){
|
|
3424
3424
|
this.unpressButton();
|
|
3425
3425
|
}
|
|
3426
|
+
event.preventDefault();
|
|
3426
3427
|
}
|
|
3427
3428
|
};
|
|
3428
3429
|
|
|
@@ -7718,8 +7719,8 @@ vjs.Flash.rtmpSourceHandler.canHandleSource = function(source){
|
|
|
7718
7719
|
vjs.Flash.rtmpSourceHandler.handleSource = function(source, tech){
|
|
7719
7720
|
var srcParts = vjs.Flash.streamToParts(source.src);
|
|
7720
7721
|
|
|
7721
|
-
tech
|
|
7722
|
-
tech
|
|
7722
|
+
tech['setRtmpConnection'](srcParts.connection);
|
|
7723
|
+
tech['setRtmpStream'](srcParts.stream);
|
|
7723
7724
|
};
|
|
7724
7725
|
|
|
7725
7726
|
// Register the native source handler
|