mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
8 lines
No EOL
164 B
JavaScript
8 lines
No EOL
164 B
JavaScript
|
|
function playVideo(id) {
|
|
var myVideo = document.getElementById(id);
|
|
|
|
myVideo.play();
|
|
$('#' + id).prop("controls", true);
|
|
$('#play-' + id).hide();
|
|
} |