github.com/darmach/terratest@v0.34.8-0.20210517103231-80931f95e3ff/docs/assets/js/video-player.js (about) 1 $(document).ready(function () { 2 $('.video-player').on('click', function() { 3 if ($(this).find('.frame').length > 0) { 4 $(this).addClass('played') 5 const video_url = $(this).data('video-url') 6 $(this).append('<iframe ' + 7 'width="' + $(this).width() + 'px"' + 8 'height="' + $(this).height() + 'px"' + 9 'allowfullscreen ' + 10 'src="'+ video_url +'"></iframe>') 11 $(this).find('.frame').remove() 12 $(this).find('.btn-video').remove() 13 } 14 }) 15 })