Skip to content

Commit

Permalink
Move js loading to after body.
Browse files Browse the repository at this point in the history
  • Loading branch information
valrus committed Mar 27, 2016
1 parent 1220d98 commit 19feaaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

<head>
<title>I'LL DO THE HOT VOICE!!!</title>
<script type="text/javascript" src="{{ url_for('static', filename='js/elm.min.js') }}"></script>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/main.css') }}"></link>
</head>

Expand All @@ -13,6 +12,7 @@
$STATIC_ROOT = {{ url_for('static', filename='')|tojson|safe }};
$SCRIPT_ROOT = {{ request.script_root|tojson|safe }};
</script>
<script type="text/javascript" src="{{ url_for('static', filename='js/elm.min.js') }}"></script>
<script type="text/javascript" src="{{ url_for('static', filename='js/undertale.js') }}"></script>

</html>

0 comments on commit 19feaaa

Please sign in to comment.