Skip to content

Commit

Permalink
Bugfix: Defer load of resources removed
Browse files Browse the repository at this point in the history
  • Loading branch information
rigon committed Oct 8, 2017
1 parent 75f3386 commit 525ba46
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8">

<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.min.css" defer />
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />

<script src="node_modules/jquery/dist/jquery.min.js" defer></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js" defer></script>
<script src="bootpopup.min.js" defer></script>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bootpopup.min.js"></script>

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/styles/kimbie.dark.min.css" defer>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/styles/kimbie.dark.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>

<style type="text/css">
body {
Expand Down Expand Up @@ -334,6 +333,8 @@ <h2 id="customized">Customized dialog</h2>
});
});
</script>

<script>hljs.initHighlightingOnLoad();</script>

<!-- PayPal Donations -->
<form id="paypal-form" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
Expand All @@ -346,5 +347,5 @@ <h2 id="customized">Customized dialog</h2>
$("#paypal-form").submit();
});
</script>
</body>
</body>
</html>

0 comments on commit 525ba46

Please sign in to comment.