Make Feedbin/Twitter video usable. Issue #718

This commit is contained in:
Maurice Parker
2020-01-17 12:17:38 -07:00
parent 539722d685
commit 3c1668c178
3 changed files with 15 additions and 2 deletions

View File

@@ -137,6 +137,7 @@ function showClickedImage() {
function inlineVideos() {
document.querySelectorAll("video").forEach(element => {
element.setAttribute("playsinline", true)
element.setAttribute("controls", true)
});
}