videojs_rails 4.11.2 → 4.11.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a3523e7716c39f5af1ee6260f96c7492877d14a8
4
- data.tar.gz: 55906a87ecf4127fc0aa9cc0717099912938d11c
3
+ metadata.gz: ced5809db6899f0c9e1d322d6cdb3ae59b860782
4
+ data.tar.gz: 8eb0f572a252332085909cc3d628eb280fccfc8c
5
5
  SHA512:
6
- metadata.gz: 8b0db283d8cbcf4aa2051278a7e6557a06d922ce0dfe100f0bfe28796b205fba44ee90b5a7df68be6e877ef88adcfd171829d63bf91bbea8c432d98f8c233a8f
7
- data.tar.gz: 7cf6f3e1e44116bfa89a85717feff94d1ce92c30ddb26c1d8d55cd4e7226dbea2e2eab1f23ec346c888a8154f093e0a01b9eb69fed75c7db1a6314ea9c63a819
6
+ metadata.gz: 9c93ef8b89b8be0a91199e2d74285582e98bac3266a8b093f484a9441ec4238db82255e02b145fb383705e7a4192fb6270c1a83bedd526de01483696ef180604
7
+ data.tar.gz: 1719e4faa8b04510fd53265df4a340b4e49821086e2a6c559bb44d1abc1f579c364d9205f50a0ec0690b41e6232975ce204acdcd2422c7792ae4f070304c7402
@@ -1,3 +1,3 @@
1
1
  module VideojsRails
2
- VERSION = '4.11.2'
2
+ VERSION = '4.11.3'
3
3
  end
@@ -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.setRtmpConnection(srcParts.connection);
7722
- tech.setRtmpStream(srcParts.stream);
7722
+ tech['setRtmpConnection'](srcParts.connection);
7723
+ tech['setRtmpStream'](srcParts.stream);
7723
7724
  };
7724
7725
 
7725
7726
  // Register the native source handler
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  Video.js Default Styles (http://videojs.com)
3
- Version 4.11.2
3
+ Version 4.11.3
4
4
  Create your own skin at http://designer.videojs.com
5
5
  */
6
6
  /* SKIN
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: videojs_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.11.2
4
+ version: 4.11.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Behan