mirror of
https://github.com/videojs/video.js.git
synced 2025-04-02 22:25:42 +02:00
@gkatsev fixed potential double default style elements. closes #2619
This commit is contained in:
parent
651a33a145
commit
81000369ec
@ -136,6 +136,7 @@ CHANGELOG
|
|||||||
* @heff removed the loadedalldata event ([view](https://github.com/videojs/video.js/pull/2591))
|
* @heff removed the loadedalldata event ([view](https://github.com/videojs/video.js/pull/2591))
|
||||||
* @dmlap switched to using raynos/xhr for requests ([view](https://github.com/videojs/video.js/pull/2594))
|
* @dmlap switched to using raynos/xhr for requests ([view](https://github.com/videojs/video.js/pull/2594))
|
||||||
* @heff Fixed double loadstart and ready events ([view](https://github.com/videojs/video.js/pull/2605))
|
* @heff Fixed double loadstart and ready events ([view](https://github.com/videojs/video.js/pull/2605))
|
||||||
|
* @gkatsev fixed potential double default style elements ([view](https://github.com/videojs/video.js/pull/2619))
|
||||||
|
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
@ -97,14 +97,17 @@ var videojs = function(id, options, ready){
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Add default styles
|
// Add default styles
|
||||||
let style = stylesheet.createStyleElement('vjs-styles-defaults');
|
let style = document.querySelector('.vjs-styles-defaults');
|
||||||
let head = document.querySelector('head');
|
if (!style) {
|
||||||
head.insertBefore(style, head.firstChild);
|
style = stylesheet.createStyleElement('vjs-styles-defaults');
|
||||||
stylesheet.setTextContent(style, `
|
let head = document.querySelector('head');
|
||||||
|
head.insertBefore(style, head.firstChild);
|
||||||
|
stylesheet.setTextContent(style, `
|
||||||
.video-js {
|
.video-js {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
height: 150px;
|
height: 150px;
|
||||||
`);
|
`);
|
||||||
|
}
|
||||||
|
|
||||||
// Run Auto-load players
|
// Run Auto-load players
|
||||||
// You have to wait at least once in case this script is loaded after your video in the DOM (weird behavior only with minified version)
|
// You have to wait at least once in case this script is loaded after your video in the DOM (weird behavior only with minified version)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user