mirror of
https://github.com/videojs/video.js.git
synced 2024-11-28 08:58:46 +02:00
e0b1008225
- Removed incompatible module - Added ie8 shim to qunit index.html - Fixed extends() usage --skip-ci
20 lines
502 B
HTML
20 lines
502 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>VideoJS Tests</title>
|
|
<link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css">
|
|
<link rel="stylesheet" href="../build/temp/video-js.min.css">
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<script src="../node_modules/qunitjs/qunit/qunit.js"></script>
|
|
|
|
<script src="../build/temp/ie8/videojs-ie8.min.js"></script>
|
|
|
|
<!-- Execute the bundled tests first -->
|
|
<script src="../build/temp/tests.js"></script>
|
|
|
|
</body>
|
|
</html>
|