diff options
author | Jesús <heckyel@hyperbola.info> | 2019-11-08 17:27:02 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-11-08 17:27:02 -0500 |
commit | 35049ff8dc106dbcefa98f2b39b9f0a54c98f565 (patch) | |
tree | 64d3df586e785a0bebfd955eeb194e5d29e5be4f /content | |
parent | 8d4bf118f69ac0a045e4a7fd534df4c2b2f158f1 (diff) | |
download | libretube-35049ff8dc106dbcefa98f2b39b9f0a54c98f565.tar.lz libretube-35049ff8dc106dbcefa98f2b39b9f0a54c98f565.tar.xz libretube-35049ff8dc106dbcefa98f2b39b9f0a54c98f565.zip |
Fix error: Bad value "" for attribute "poster" on element "video": Must be non-empty
Diffstat (limited to 'content')
-rw-r--r-- | content/articles/course-html5/intro.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/articles/course-html5/intro.md b/content/articles/course-html5/intro.md index 2a90428..cff2911 100644 --- a/content/articles/course-html5/intro.md +++ b/content/articles/course-html5/intro.md @@ -10,7 +10,7 @@ Time: 9:16 Title: Introducción a HTML5 <figure> - <video id="player-ply" playsinline controls poster=''> + <video id="player-ply" playsinline controls> <source src="https://archive.org/download/coursehtml5/0001-Introduccion.webm" type="video/webm"/> <track kind="captions" label="Español" src="{static}/wp-content/uploads/article/subtitles/2019/03/introduccion-es.vtt" srclang="es" default> </video> |