videojs_rails 4.12.6.1 → 4.12.7
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: c47a5273bdd04a4289185faf92562167014d9d7f
|
|
4
|
+
data.tar.gz: 6ba353f36e94579c701186b96a4b7d68f441bd86
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 925b123754666ae09b9d24ef54195c0313f1fdbc8d6929c54e4a188bba06c0a0eb7a6074de432f270bffce48130000334429eadfaada27f63dac6cf44b53787e
|
|
7
|
+
data.tar.gz: 4992cec8bf364c2ae08975397ae627941cde19c9ba95dd31ba9a1851aa5d80516eb00645e099209a629f65cbc72ccba9d84e58f548fe9bf8022c34cea6c0b432
|
|
@@ -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.
|
|
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.
|
|
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.
|
|
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-
|
|
11
|
+
date: 2015-08-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: HTML5 VideoJS plugin
|
|
14
14
|
email:
|