videojs_rails 4.12.6.1 → 4.12.7

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: eb92eacedf89b4ae3d2540561bb437036043e1bf
4
- data.tar.gz: a982d5cbf412773b0607d1614eeb4f6cb3d0ce23
3
+ metadata.gz: c47a5273bdd04a4289185faf92562167014d9d7f
4
+ data.tar.gz: 6ba353f36e94579c701186b96a4b7d68f441bd86
5
5
  SHA512:
6
- metadata.gz: 023cd67d03a51549036b87bb4490f05b53c8659f0c033e53f35cd43d536da63e80b9b2d29f6e4ba65e448aea71cc372fb4fe88b5a61cfb90a418193d73e54f3f
7
- data.tar.gz: 9a74891f2c1183aa2db23785cf62f49e7bf9d6cbfcd7fbec0059a6442b08cf6a003ac88e4048ad45882112bbb3d6e13c240155b34a37941a523ca31c1d72aeb6
6
+ metadata.gz: 925b123754666ae09b9d24ef54195c0313f1fdbc8d6929c54e4a188bba06c0a0eb7a6074de432f270bffce48130000334429eadfaada27f63dac6cf44b53787e
7
+ data.tar.gz: 4992cec8bf364c2ae08975397ae627941cde19c9ba95dd31ba9a1851aa5d80516eb00645e099209a629f65cbc72ccba9d84e58f548fe9bf8022c34cea6c0b432
@@ -1,3 +1,3 @@
1
1
  module VideojsRails
2
- VERSION = '4.12.6.1'
2
+ VERSION = '4.12.7'
3
3
  end
@@ -80,7 +80,7 @@ vjs.ACCESS_PROTOCOL = ('https:' == document.location.protocol ? 'https://' : 'ht
80
80
  * Full player version
81
81
  * @type {string}
82
82
  */
83
- vjs['VERSION'] = '4.12.6';
83
+ vjs['VERSION'] = '4.12.7';
84
84
 
85
85
  /**
86
86
  * Global Player instance options, surfaced from vjs.Player.prototype.options_
@@ -5601,6 +5601,7 @@ vjs.DurationDisplay = vjs.Component.extend({
5601
5601
  // Once the order of durationchange and this.player_.duration() being set is figured out,
5602
5602
  // this can be updated.
5603
5603
  this.on(player, 'timeupdate', this.updateContent);
5604
+ this.on(player, 'loadedmetadata', this.updateContent);
5604
5605
  }
5605
5606
  });
5606
5607
 
@@ -7142,7 +7143,7 @@ vjs.Html5 = vjs.MediaTechController.extend({
7142
7143
  // In Chrome (15), if you have autoplay + a poster + no controls, the video gets hidden (but audio plays)
7143
7144
  // This fixes both issues. Need to wait for API, so it updates displays correctly
7144
7145
  player.ready(function(){
7145
- if (this.tag && this.options_['autoplay'] && this.paused()) {
7146
+ if (this.src() && this.tag && this.options_['autoplay'] && this.paused()) {
7146
7147
  delete this.tag['poster']; // Chrome Fix. Fixed in Chrome v16.
7147
7148
  this.play();
7148
7149
  }
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  Video.js Default Styles (http://videojs.com)
3
- Version 4.12.6
3
+ Version 4.12.7
4
4
  Create your own skin at http://designer.videojs.com
5
5
  */
6
6
  /* SKIN
@@ -868,6 +868,7 @@ body.vjs-full-window {
868
868
  background-repeat: no-repeat;
869
869
  background-position: 50% 50%;
870
870
  background-size: contain;
871
+ background-color: #000000;
871
872
  cursor: pointer;
872
873
  margin: 0;
873
874
  padding: 0;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: videojs_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.12.6.1
4
+ version: 4.12.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Behan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-29 00:00:00.000000000 Z
11
+ date: 2015-08-30 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: HTML5 VideoJS plugin
14
14
  email: