Update player.js
This commit is contained in:
parent
183a987921
commit
e5be8fad4d
|
|
@ -114,6 +114,7 @@ class DPlayer {
|
|||
}
|
||||
|
||||
this.setting = new Setting(this);
|
||||
this.plugins = {};
|
||||
|
||||
document.addEventListener('click', () => {
|
||||
this.focus = false;
|
||||
|
|
@ -344,7 +345,7 @@ class DPlayer {
|
|||
if (Hls) {
|
||||
if (Hls.isSupported()) {
|
||||
const hls = new Hls();
|
||||
this.hls = hls;
|
||||
this.plugins.Hls = hls;
|
||||
hls.loadSource(video.src);
|
||||
|
||||
.attachMedia(video);
|
||||
|
|
|
|||
Loading…
Reference in New Issue