forked from mleibman/SlickGrid
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
37 lines (31 loc) · 1.33 KB
/
index.html
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
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>SlickGrid - Grid tests</title>
<link rel="stylesheet" href="../../lib/qunit.css" type="text/css"/>
<link rel="stylesheet" href="../../slick.grid.css" type="text/css"/>
<link rel="stylesheet" href="../../slick-default-theme.css" type="text/css" />
</head>
<body>
<h1 id="qunit-header">SlickGrid - Grid Test Suite</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<br/><br/><br/>
<div id="container" style="width:600px;height:400px;"></div>
<script type="text/javascript" src="../../lib/qunit.js"></script>
<script type="text/javascript" src="../../lib/jquery-1.7.min.js"></script>
<script type="text/javascript" src="../../lib/jquery-ui-1.8.24.custom.min.js"></script>
<script type="text/javascript" src="../../lib/jquery.event.drag-2.2.js"></script>
<script type="text/javascript" src="../../lib/jquery.simulate.js"></script>
<script type="text/javascript" src="../../lib/qunit.js"></script>
<script type="text/javascript">
jQuery.noConflict();
</script>
<script type="text/javascript" src="../../slick.core.js"></script>
<script type="text/javascript" src="../../slick.dataview.js"></script>
<script type="text/javascript" src="../../slick.grid.js"></script>
<script type="text/javascript" src="grid.js"></script>
</body>
</html>