1
0
lqzhgood 6 жил өмнө
parent
commit
e5be8fad4d
1 өөрчлөгдсөн 2 нэмэгдсэн , 1 устгасан
  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);