mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 09:37:26 +00:00
10 lines
131 B
JavaScript
10 lines
131 B
JavaScript
"use strict";
|
|
|
|
|
|
|
|
function playVideo(id) {
|
|
const video = document.getElementById(id);
|
|
|
|
video.play();
|
|
video.controls = true;
|
|
}
|