about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Jordan <alex@strugee.net>2017-01-16 14:08:04 -0500
committerAlex Jordan <alex@strugee.net>2017-01-16 14:08:04 -0500
commit085bca1d3993e70375f27c499726fbd156aff420 (patch)
tree2bf7bbca1da00ffdd77976af81a27b8545fa9d66
parentdb85f9ed7904bcf9a75282a020153f8fa39960bd (diff)
downloadphp-xmpp-invitation-085bca1d3993e70375f27c499726fbd156aff420.tar.gz
Move <script>s to the bottom of <body>, where they should be
This is because otherwise they block the browser's HTML parsing.
-rw-r--r--index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.html b/index.html
index 4b461d1..e5af9d1 100644
--- a/index.html
+++ b/index.html
@@ -4,9 +4,7 @@
   <meta charset="utf-8">
   <meta content="IE=edge" http-equiv="X-UA-Compatible">
   <meta content="width=device-width, initial-scale=1, user-scalable=0" name="viewport">
-  <script src="/scripts/i18n-text.min.js"></script>
   <title>XMPP Invitation</title>
-  <script src="/scripts/main.js"></script>
   <link href="stylesheets/bootstrap.min.css" rel="stylesheet">
   <link href="stylesheets/i.css" rel="stylesheet">
   <style>
@@ -37,5 +35,7 @@
     <p class="lead" id="checkfulllist"></p>
     <p id="xmppis"></p>
   </div>
+  <script src="/scripts/i18n-text.min.js"></script>
+  <script src="/scripts/main.js"></script>
 </body>
 </html>