Merge pull request #277 from qgustavor/patch-1

Fix HTTPS and some no-script cases
This commit is contained in:
Peter Braden 2015-08-16 11:41:33 +02:00
commit cf8449b3da

View File

@ -2,10 +2,14 @@
<html> <html>
<head> <head>
<title></title> <title></title>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/documentup/latest.min.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/documentup/0.1.1/documentup.min.js"></script>
<script type="text/javascript"> <script type="text/javascript">
DocumentUp.document("peterbraden/node-opencv"); if (typeof DocumentUp == 'undefined') {
alert('Some resources failed loading: try reloading the page.');
} else {
DocumentUp.document("peterbraden/node-opencv");
}
</script> </script>
</head> </head>
<body></body> <body><noscript>This page requires JavaScript.</noscript></body>
</html> </html>