Commit 090167bd183dca4f0b38511aa5ae67cff5f0f2d7
Committed by
Sergio Oliveira
1 parent
7e9688b4
Exists in
master
and in
39 other branches
Moved js includes to footer_js
Showing
1 changed file
with
6 additions
and
2 deletions
Show diff stats
colab/proxy/noosfero/templates/proxy/noosfero.html
... | ... | @@ -12,8 +12,6 @@ |
12 | 12 | |
13 | 13 | {% block head_js %} |
14 | 14 | <script>jQuery.noConflict();</script> |
15 | -<script src="{% static 'js/jquery.dropdown.js' %}" type="text/javascript"></script> | |
16 | -<script src="{% static 'js/collapse.js' %}" type="text/javascript"></script> | |
17 | 15 | {% endblock %} |
18 | 16 | |
19 | 17 | {% block navbar %} |
... | ... | @@ -26,4 +24,10 @@ |
26 | 24 | <div class=".colab-style"> |
27 | 25 | {{ block.super }} |
28 | 26 | </div> |
27 | +{% endblock %} | |
28 | + | |
29 | +{% block footer_js %} | |
30 | +{{ block.super }} | |
31 | +<script src="{% static 'js/jquery.dropdown.js' %}" type="text/javascript"></script> | |
32 | +<script src="{% static 'js/collapse.js' %}" type="text/javascript"></script> | |
29 | 33 | {% endblock %} |
30 | 34 | \ No newline at end of file | ... | ... |