diff --git a/cinera/cinera_player_pre.js b/cinera/cinera_player_pre.js index 558ef25..57dd285 100644 --- a/cinera/cinera_player_pre.js +++ b/cinera/cinera_player_pre.js @@ -118,7 +118,10 @@ Player.prototype.updateSize = function() { this.markersContainer.style.height = height; if (this.youtubePlayerReady) { this.youtubePlayer.setSize(Math.floor(width), Math.floor(height)); - this.resume(); + if(this.playing) + { + this.resume(); + } } }