1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-02 06:43:08 +02:00
TableFilter/test/test-one-row.html

30 lines
840 B
HTML
Raw Permalink Normal View History

2017-01-04 04:09:18 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>TableFilter one row tests</title>
<link rel="stylesheet" href="libs/qunit/qunit.css">
<script src="libs/qunit/qunit.js"></script>
<script src="libs/polyfill.js"></script>
</head>
<body>
<table id="demo">
<thead>
<tr>
<th>From</th>
<th>Destination</th>
<th>Road Distance (km)</th>
<th>By Air (hrs)</th>
<th>By Rail (hrs)</th>
</tr>
</thead>
2017-01-04 04:09:18 +01:00
</table>
<script src="../dist/tablefilter/tablefilter.js"></script>
<script src="test-one-row.js"></script>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
</body>
</html>