1
0
Fork 0
mirror of https://github.com/Luzifer/qrdisplay.git synced 2024-10-18 06:34:22 +00:00

Load scripts using https if required

This commit is contained in:
Knut Ahlers 2016-04-27 15:43:11 +02:00
parent 064b75b29a
commit a48ce589c8
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -3,15 +3,15 @@
<head> <head>
<meta charset='utf-8'> <meta charset='utf-8'>
<title>QRDisplay on GitHub</title> <title>QRDisplay on GitHub</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="jquery-qrcode/jquery.qrcode.min.js"></script> <script src="jquery-qrcode/jquery.qrcode.min.js"></script>
<script src="application.js"></script> <script src="application.js"></script>
<link rel="stylesheet" href="style.css" type="text/css" /> <link rel="stylesheet" href="style.css" type="text/css" />
<!-- Social media sharing crap... --> <!-- Social media sharing crap... -->
<meta property="og:title" content="QRDisplay on GitHub" /> <meta property="og:title" content="QRDisplay on GitHub" />
<meta property="og:type" content="website" /> <meta property="og:type" content="website" />
<meta property="og:url" content="http://luzifer.github.io/qrdisplay/" /> <meta property="og:url" content="https://luzifer.github.io/qrdisplay/" />
<meta property="og:image" content="http://luzifer.github.io/qrdisplay/ogimage.png" /> <meta property="og:image" content="https://luzifer.github.io/qrdisplay/ogimage.png" />
<meta name="description" content="A tiny interface to generate a QRCode in the browser for direct usage..."> <meta name="description" content="A tiny interface to generate a QRCode in the browser for direct usage...">
<!-- No more sharing crap here... ;) --> <!-- No more sharing crap here... ;) -->
</head> </head>