jQuery(document).ready(function($) {
var $videoComponent = $('.jsVideoComponent');
if ($videoComponent.length) {
$videoComponent.each(function() {
var $thisComponent = $(this);
var $thisVideo = $thisComponent.find('.jsVideo');
});
var video = plyr.setup('.jsVideo');
var $button = $('.jsVideoBtn');
$('.plyr').removeAttr('tabindex');
$button.on('click', function() {
$('.plyr').show();
video[0].pause();
video[0].toggleFullscreen();
video[0].play();
$(this).parent('.jsVideoPoster').siblings('.plyr').attr('tabindex', 0);
});
video[0].on('exitfullscreen', function() {
$('.plyr').hide();
video[0].stop();
$('.plyr').removeAttr('tabindex');
});
}
});