mirror of
https://github.com/videojs/video.js.git
synced 2024-12-04 10:34:51 +02:00
7bafcc2a55
* Switch to es3 preset for babel so that it runs last. Plugins run before presets and presets run in reverse order. Also, we ran into a weird bug in babel that causes `default` not to be quoted in some cases (https://github.com/babel/babel/issues/4799) which we've worked around here. * Restore the es-shims for tests and the ie8 fallback script. * Do a null-check around `Player.players`. * use more round fractions (like 0.5 and 1) to avoid rounding issues.
20 lines
611 B
HTML
20 lines
611 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<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.js"></script>
|
|
|
|
<!-- Execute the bundled tests first -->
|
|
<script src="../build/temp/tests.js"></script>
|
|
<script src="../build/temp/browserify.js"></script>
|
|
<script src="../build/temp/webpack.js"></script>
|
|
</body>
|
|
</html>
|