##// END OF EJS Templates
Load some external JS libraries after content
neko259 -
r1407:d8cc903f default
parent child Browse files
Show More
@@ -25,9 +25,6 b''
25 </head>
25 </head>
26 <body data-image-viewer="{{ image_viewer }}">
26 <body data-image-viewer="{{ image_viewer }}">
27 <script src="{% static 'js/jquery-2.0.1.min.js' %}"></script>
27 <script src="{% static 'js/jquery-2.0.1.min.js' %}"></script>
28 <script src="{% static 'js/3party/jquery-ui.min.js' %}"></script>
29 <script src="{% static 'js/jquery.mousewheel.js' %}"></script>
30 <script src="{% url 'js_info_dict' %}"></script>
31
28
32 <div class="navigation_panel header">
29 <div class="navigation_panel header">
33 <a class="link" href="{% url 'index' %}">{% trans "All threads" %}</a>
30 <a class="link" href="{% url 'index' %}">{% trans "All threads" %}</a>
@@ -62,7 +59,12 b''
62
59
63 {% block content %}{% endblock %}
60 {% block content %}{% endblock %}
64
61
62 <script src="{% static 'js/3party/jquery-ui.min.js' %}"></script>
63 <script src="{% static 'js/jquery.mousewheel.js' %}"></script>
65 <script src="{% static 'js/3party/highlight.min.js' %}"></script>
64 <script src="{% static 'js/3party/highlight.min.js' %}"></script>
65
66 <script src="{% url 'js_info_dict' %}"></script>
67
66 <script src="{% static 'js/popup.js' %}"></script>
68 <script src="{% static 'js/popup.js' %}"></script>
67 <script src="{% static 'js/image.js' %}"></script>
69 <script src="{% static 'js/image.js' %}"></script>
68 <script src="{% static 'js/refpopup.js' %}"></script>
70 <script src="{% static 'js/refpopup.js' %}"></script>
General Comments 0
You need to be logged in to leave comments. Login now