lbry.com/web/js/yt2/youtube_video.js
ポール ウェッブ 87d594469f Redesign
2019-04-05 16:19:51 -05:00

10 lines
131 B
JavaScript

"use strict";
function playVideo(id) {
const video = document.getElementById(id);
video.play();
video.controls = true;
}