mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-13 09:43:10 +00:00
Move <script> tags to top of body
Having <script> tags at the bottom of the <body> caused some widgets that relied upon JavaScript to fail, as the required libraries had not been loaded at the point where the widgets were added to the page.
This commit is contained in:
parent
f5d37db916
commit
f2b9615ac8
1 changed files with 2 additions and 2 deletions
|
|
@ -22,10 +22,10 @@
|
|||
<p class="browsermessage">You are using an <strong>outdated</strong> browser not supported by this software. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a>.</p>
|
||||
<![endif]-->
|
||||
|
||||
{% block js %}{% endblock %}
|
||||
|
||||
<div class="wrapper">
|
||||
{% block furniture %}{% endblock %}
|
||||
</div>
|
||||
|
||||
{% block js %}{% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Reference in a new issue