mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-16 06:03:35 +00:00
18 lines
559 B
HTML
18 lines
559 B
HTML
{% extends 'view_file_base.html' %}
|
|
|
|
{% block extra_style %}{{block.super}}
|
|
{% if not err%}
|
|
<link rel="stylesheet" href="{{MEDIA_URL}}css/mediaelementplayer.css" />
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block extra_script %}{{ block.super }}
|
|
{% if not err%}
|
|
<script src="{{MEDIA_URL}}js/mediaelement-and-player.min.js"></script>
|
|
<script type="text/javascript">
|
|
$('#file-view').html('<div class="video-container"><video src="{{raw_path}}" width="800" height="400"></video></div>');
|
|
$('video').mediaelementplayer(/* Options */);
|
|
</script>
|
|
{% endif %}
|
|
{% endblock %}
|