5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-09-21 03:22:05 +00:00

deshabilitar los controles de los videos para poder seleccionarlos

This commit is contained in:
f 2020-11-17 20:30:06 -03:00
parent dba39dfc28
commit 7b1b243708

View file

@ -465,6 +465,7 @@ function setupEditor (editorEl) {
for (const video of document.querySelectorAll('.editor .editor-content video')) {
video.addEventListener('click', event => event.target.controls = true)
video.addEventListener('focusout', event => event.target.controls = false)
video.controls = false
}
cleanContent(contentEl)
@ -479,7 +480,7 @@ function stringifyAllowedStyle (element) {
document.addEventListener("turbolinks:load", () => {
for (const editorEl of document.querySelectorAll(".editor")) {
if (!editorEl.querySelector('.editor-toolbar')) continue
if (!editorEl.querySelector('.editor-toolbar')) continue
setupEditor(editorEl)
}