Well I managed to make it work with a bit of simple custom JS, that’s all my simple brain could come up with ??
jQuery(function($) {
$('.video-wrapper').mouseover(function() {
if (jQuery('div').hasClass("vjs-playing")) {
jQuery('.vjs-control-bar').addClass("vjs-lock-showing");
}
});
});
jQuery(function($) {
$('.video-wrapper').mouseout(function() {
if (jQuery('div').hasClass("vjs-playing")) {
jQuery('.vjs-control-bar').removeClass("vjs-lock-showing");
}
});
});