mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-18 15:08:22 +00:00
13 lines
547 B
HTML
13 lines
547 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 == 'Markdown' %}
|
|
<script type="text/javascript" src="{{MEDIA_URL}}js/showdown.js"></script>
|
|
{% endif %}
|