File: index.html

package info (click to toggle)
libjs-tv4 1.2.7%2Bdfsg1-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 5,464 kB
  • sloc: javascript: 107,382; makefile: 16
file content (26 lines) | stat: -rw-r--r-- 782 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
    <title>tv4</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <link rel="stylesheet" href="./deps/mocha.css"/>
    <script src="./deps/jquery.js"></script>
    <script src="./deps/mocha.js"></script>
    <script src="./deps/proclaim.js"></script>
    <script src="../tv4.js"></script>
    <script>
        //save globals so tests can be shared between node an browsers
        window.refs = {tv4:tv4, assert:proclaim};
        mocha.setup('bdd');
        window.onload = function () {
            if (navigator.userAgent.indexOf('PhantomJS') < 0) {
                mocha.run();
            }
        };
    </script>
    <script src="./all_concat.js"></script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>