mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-17 22:47:59 +00:00
16 lines
683 B
HTML
16 lines
683 B
HTML
{% if filetype == 'Text' %}
|
|
<script type="text/javascript" src="{{MEDIA_URL}}codemirror/codemirror-2.36.js"></script>
|
|
{% endif %}
|
|
{% if filetype == 'Document' or filetype == 'PDF' and not use_pdfjs %}
|
|
<script type="text/javascript" src="{{MEDIA_URL}}flexpaper/js/flexpaper_flash.js"></script>
|
|
{% endif %}
|
|
{% if filetype == 'PDF' and use_pdfjs %}
|
|
<script type="text/javascript" src="{{MEDIA_URL}}js/pdf.js"></script>
|
|
{% endif %}
|
|
{% if filetype == 'Video' or filetype == 'Audio' %}
|
|
<script src="{{MEDIA_URL}}js/mediaelement-and-player.min.js"></script>
|
|
{% endif %}
|
|
{% if filetype == 'Markdown' %}
|
|
<script type="text/javascript" src="{{MEDIA_URL}}js/showdown.js"></script>
|
|
{% endif %}
|