Update controller.js

This commit is contained in:
A-Circle Zhang 2018-09-29 12:07:59 +08:00 committed by GitHub
parent 7dfd75796f
commit 59f4ce6bc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -85,13 +85,13 @@ class Controller {
if (this.player.options.video.thumbnails) {
this.thumbnails = new Thumbnails({
container: this.player.template.barPreview,
barWrap: this.player.template.barWrap,
barWidth: this.player.template.barWrap.offsetWidth,
url: this.player.options.video.thumbnails,
events: this.player.events
});
this.player.on('loadedmetadata', () => {
this.thumbnails.resize(160, this.player.video.videoHeight / this.player.video.videoWidth * 160);
this.thumbnails.resize(160, this.player.video.videoHeight / this.player.video.videoWidth * 160, this.player.template.barWrap.offsetWidth);
});
}
}