node-opencv/index.html
Gustavo Rodrigues d0f0722e71 Fix HTTPS and some no-script cases
Using HTTPS to prevent mixed-content warnings, updated DocumentUp URL from cdnjs and added support for cases where JavaScript fails loading, even if they're not in the default DocumentUp [template](http://documentup.com/jeromegn/documentup).
2015-08-13 19:19:45 -03:00

16 lines
510 B
HTML

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