Browse Source

Fix hard-coded video mime-type in the galleria theme. (Ref #196)

colorbox-directories
Simon Conseil 10 years ago
parent
commit
e5cc7eb14b
  1. 2
      sigal/themes/galleria/templates/index.html

2
sigal/themes/galleria/templates/index.html

@ -147,7 +147,7 @@
data-title="{{ media.title if media.title else media.filename }}"
data-description="{{ img_description(media) }}"
data-layer="<video controls>
<source src='{{ media.filename }}' type='video/webm' />
<source src='{{ media.filename }}' type='{{ media.mime }}' />
</video>" />
</a>
{% endif %}

Loading…
Cancel
Save