$(document).on('click', '#play', function() {
var id = $(this).data('id');
var title = $(this).data('title');
var dom = $(this).data('dom');
var dome = $(this).data('frame');
$('#view_video_modal').modal('show');
let player_pathx = 'https://'+dome+'/e/' + id;
let dl_pathx = dom;
$("#view_video_frame").attr('src', player_pathx);
$("#dl").attr('href', dl_pathx);
$("#texth").html(title);
})
$(function(){
$('.modal').on('hidden.bs.modal', function (e) {
$iframe = $(this).find("iframe");
$iframe.attr("src", $iframe.attr("src"));
});
});