From 54b03963daac17b895d25f1ebdfa7779cab0b872 Mon Sep 17 00:00:00 2001 From: Antonio Laguna Date: Wed, 19 Apr 2017 16:34:13 +0200 Subject: [PATCH] Pausing after seek --- src/js/plugins/youtube.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/js/plugins/youtube.js b/src/js/plugins/youtube.js index 16031c0..1e5320d 100644 --- a/src/js/plugins/youtube.js +++ b/src/js/plugins/youtube.js @@ -92,6 +92,7 @@ class Player { // Restoring the current time if saved if (this.currentTime) { this.player.seekTo(this.currentTime, true); + this.player.pauseVideo(); this.currentTime = null; }