Parcourir la source

Update player.js

lqzhgood il y a 6 ans
Parent
commit
e5be8fad4d
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      src/js/player.js

+ 2 - 1
src/js/player.js

@@ -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);