1 | <!DOCTYPE html>
|
2 | <html>
|
3 | <head>
|
4 | <meta charset="utf-8">
|
5 | <title>TableFilter one row tests</title>
|
6 | <link rel="stylesheet" href="libs/qunit/qunit.css">
|
7 | <script src="libs/qunit/qunit.js"></script>
|
8 | <script src="libs/polyfill.js"></script>
|
9 | </head>
|
10 | <body>
|
11 | <table id="demo">
|
12 | <thead>
|
13 | <tr>
|
14 | <th>From</th>
|
15 | <th>Destination</th>
|
16 | <th>Road Distance (km)</th>
|
17 | <th>By Air (hrs)</th>
|
18 | <th>By Rail (hrs)</th>
|
19 | </tr>
|
20 | </thead>
|
21 | </table>
|
22 |
|
23 | <script src="../dist/tablefilter/tablefilter.js"></script>
|
24 | <script src="test-one-row.js"></script>
|
25 |
|
26 | <div id="qunit"></div>
|
27 | <div id="qunit-fixture"></div>
|
28 | </body>
|
29 | </html>
|