mirror of
https://github.com/peterbraden/node-opencv.git
synced 2025-12-08 19:45:55 +00:00
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).
16 lines
510 B
HTML
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>
|