mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-16 06:03:35 +00:00
13 lines
520 B
HTML
13 lines
520 B
HTML
{% extends 'view_file_base.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block extra_script %}{{ block.super }}
|
|
<script type="text/javascript">
|
|
if (!$.browser.mozilla && !$.browser.safari && !($.browser.msie && parseInt($.browser.version) > 8)) {
|
|
$('#file-view').html('<div id="file-view-tip"><p>{% trans "To view it online, you can use firefox, chrome or IE 9." %}</p></div>');
|
|
} else {
|
|
$('#file-view').html('<iframe src="{{ raw_path }}" frameborder="0" id="svg-view"></iframe>');
|
|
}
|
|
</script>
|
|
{% endblock %}
|