fix Hls not defined bug

This commit is contained in:
DIYgod 2016-08-02 18:05:38 +08:00
parent 74602816a1
commit ec57545b2b
No known key found for this signature in database
GPG Key ID: F8797DD1088C6506
3 changed files with 4 additions and 4 deletions

4
dist/DPlayer.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -289,7 +289,7 @@ class DPlayer {
this.audio = this.element.getElementsByClassName('dplayer-video')[0];
// Support HTTP Live Streaming
if (this.option.video.url.match(/(m3u8)$/i) || Hls.isSupported()) {
if (this.option.video.url.match(/(m3u8)$/i) && Hls.isSupported()) {
this.element.getElementsByClassName('dplayer-time')[0].style.display = 'none';
const hls = new Hls();
hls.attachMedia(this.audio);