1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-18 15:08:22 +00:00
seahub/templates/snippets/file_view_js.html

13 lines
547 B
HTML
Raw Normal View History

2012-07-31 08:48:55 +00:00
{% if filetype == 'Text' %}
<script type="text/javascript" src="{{MEDIA_URL}}codemirror/codemirror-2.36.js"></script>
2012-07-31 08:48:55 +00:00
{% endif %}
2013-01-09 07:32:44 +00:00
{% if filetype == 'Document' or filetype == 'PDF' and not use_pdfjs %}
2012-09-13 06:01:32 +00:00
<script type="text/javascript" src="{{MEDIA_URL}}flexpaper/js/flexpaper_flash.js"></script>
{% endif %}
2013-01-09 07:32:44 +00:00
{% if filetype == 'PDF' and use_pdfjs %}
<script type="text/javascript" src="{{MEDIA_URL}}js/pdf.js"></script>
{% endif %}
2012-07-31 08:48:55 +00:00
{% if filetype == 'Markdown' %}
<script type="text/javascript" src="{{MEDIA_URL}}js/showdown.js"></script>
{% endif %}